Files
evilspins/app/error.vue
valere 631bc65c70
Some checks failed
Deploy App / deploy (push) Failing after 13s
studio v1.1
2025-09-20 21:39:56 +02:00

17 lines
380 B
Vue

<template>
<div>
<h1 class="text-white pt-6 text-lg md:text-xl lg:text-2xl text-center font-bold tracking-widest text-shadow">
{{ error?.statusCode }}
</h1>
<NuxtLink to="/">Go back home</NuxtLink>
</div>
</template>
<script setup lang="ts">
import type { NuxtError } from '#app'
const props = defineProps({
error: Object as () => NuxtError
})
</script>