next/error.vue

11 lines
218 B
Vue
Raw Normal View History

2023-12-09 17:03:36 -05:00
<script lang="ts" setup>
import errorBound from "~/components/errorBound.vue";
const p = defineProps<{ error: any }>();
</script>
<template>
<NuxtLayout>
<error-bound :error="error" />
</NuxtLayout>
</template>