fix(nuxt): do not accept attrs on <NuxtErrorBoundary> (#28901)

This commit is contained in:
Daniel Roe 2024-09-09 21:37:55 +02:00 committed by GitHub
parent 93b5b04e9a
commit 213ce66c36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,8 @@ import { defineComponent, onErrorCaptured, ref } from 'vue'
import { useNuxtApp } from '../nuxt' import { useNuxtApp } from '../nuxt'
export default defineComponent({ export default defineComponent({
name: 'NuxtErrorBoundary',
inheritAttrs: false,
emits: { emits: {
error (_error: unknown) { error (_error: unknown) {
return true return true
@ -11,14 +13,16 @@ export default defineComponent({
const error = ref<Error | null>(null) const error = ref<Error | null>(null)
const nuxtApp = useNuxtApp() const nuxtApp = useNuxtApp()
if (import.meta.client) {
onErrorCaptured((err, target, info) => { onErrorCaptured((err, target, info) => {
if (import.meta.client && (!nuxtApp.isHydrating || !nuxtApp.payload.serverRendered)) { if (!nuxtApp.isHydrating || !nuxtApp.payload.serverRendered) {
emit('error', err) emit('error', err)
nuxtApp.hooks.callHook('vue:error', err, target, info) nuxtApp.hooks.callHook('vue:error', err, target, info)
error.value = err error.value = err
return false return false
} }
}) })
}
function clearError () { function clearError () {
error.value = null error.value = null