API Composables
useError
useError composable returns the global Nuxt error that is being handled.
useError
useError
composable returns the global Nuxt error that is being handled and it is available on both client and server.
const error = useError()
useError
sets an error in the state and creates a reactive as well as SSR-friendly global Nuxt error across components. Nuxt errors have the following properties:
Properties
- statusCode
Type:Number
HTTP response status code - statusMessage
Type:String
HTTP response status message - message
Type:String
Error message
Read more in Missing link.
useCookie
useCookie is an SSR-friendly composable to read and write cookies.
useFetch
This composable provides a convenient wrapper around useAsyncData and $fetch. It automatically generates a key based on URL and fetch options, provides type hints for request url based on server routes, and infers API response type.