mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +00:00
21 lines
525 B
Markdown
21 lines
525 B
Markdown
# `throwError`
|
|
|
|
Nuxt provides a quick and simple way to throw errors.
|
|
|
|
Within your pages, components and plugins you can use `throwError` to throw an error.
|
|
|
|
**Parameters:**
|
|
|
|
- `error`: `string | Error`
|
|
|
|
```js
|
|
throwError("😱 Oh no, an error has been thrown.")
|
|
```
|
|
|
|
The thrown error is set in the state using [`useError()`](/api/composables/use-error) to create a reactive and SSR-friendly shared error state across components.
|
|
|
|
`throwError` calls the `app:error` hook.
|
|
|
|
::ReadMore{link="/guide/features/error-handling"}
|
|
::
|