showError
Nuxt 提供了一种快速简单的方法,可以在需要时显示全屏错误页面。
在 Nuxt 上下文 中,你可以使用 showError
来显示错误。
参数
error
:string | Error | Partial<{ cause, data, message, name, stack, statusCode, statusMessage }>
showError("😱 Oh no, an error has been thrown.")
showError({
statusCode: 404,
statusMessage: "Page Not Found"
})
错误会使用 useError()
设置到状态中,以便在组件之间创建一个响应式的、对 SSR 友好的共享错误状态。
showError
会调用 app:error
钩子。