next/error.vue

11 lines
218 B
Vue

<script lang="ts" setup>
import errorBound from "~/components/errorBound.vue";
const p = defineProps<{ error: any }>();
</script>
<template>
<NuxtLayout>
<error-bound :error="error" />
</NuxtLayout>
</template>