Files
wails-nuxt/frontend/app/error.vue
2025-09-04 10:23:20 +08:00

14 lines
261 B
Vue

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