easyai-mfe-demo/host/error.vue
2024-12-23 13:38:00 +07:00

15 lines
286 B
Vue

<script setup lang="ts">
import type { NuxtError } from "#app"
const props = defineProps({
error: Object as () => NuxtError
})
</script>
<template>
<div>
<h1>Ooops... Something went wrong...</h1>
<NuxtLink to="/">Go back home</NuxtLink>
</div>
</template>