mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +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>
28 lines
731 B
Markdown
28 lines
731 B
Markdown
---
|
|
title: "clearError"
|
|
description: "The clearError composable clears all handled errors."
|
|
---
|
|
|
|
# `clearError`
|
|
|
|
Within your pages, components, and plugins, you can use `clearError` to clear all errors and redirect the user.
|
|
|
|
**Parameters:**
|
|
|
|
- `options?: { redirect?: string }`
|
|
|
|
You can provide an optional path to redirect to (for example, if you want to navigate to a 'safe' page).
|
|
|
|
```js
|
|
// Without redirect
|
|
clearError()
|
|
|
|
// With redirect
|
|
clearError({ redirect: '/homepage' })
|
|
```
|
|
|
|
Errors are set in state using [`useError()`](/api/composables/use-error). The `clearError` composable will reset this state and calls the `app:error:cleared` hook with the provided options.
|
|
|
|
::ReadMore{link="/getting-started/error-handling"}
|
|
::
|