mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
dc47c64f14
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: Pooya Parsa <pooya@pi0.io> Co-authored-by: pooya parsa <pyapar@gmail.com> Co-authored-by: Clément Ollivier <clement.o2p@gmail.com>
661 B
661 B
description |
---|
setResponseStatus sets the statusCode (and optionally the statusMessage) of the response. |
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')
::alert{icon=👉}
In the browser, setResponseStatus
will have no effect.
::