馃摚 Just Released! Our official workshop to level up from Nuxt 2 to Nuxt 3.

Register now

setResponseStatus

Nuxt provides composables and utilities for first-class server-side-rendering support.

setResponseStatus sets the statusCode (and optionally the statusMessage) of the response.

setResponseStatus can only be called within component setup functions, plugins, and route middleware.

// Set the status code to 404 for a custom 404 page
setResponseStatus(404)
// Set the status message as well
setResponseStatus(404, 'Page Not Found')

In the browser, setResponseStatus will have no effect.