15 lines
286 B
Vue
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>
|