mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 09:50:48 +02:00
20 lines
516 B
Vue
20 lines
516 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ error?.statusCode }}</h1>
|
|
<p>{{ error?.message }}</p>
|
|
<NuxtLink to="/">Go back home</NuxtLink>
|
|
<NuxtLink to="https://github.com/C9Glax/tranga-website/issues/new"
|
|
><Icon name="i-lucide-github" />Report this issue</NuxtLink
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { NuxtError } from '#app';
|
|
|
|
defineProps({
|
|
// eslint-disable-next-line vue/require-default-prop
|
|
error: Object as () => NuxtError,
|
|
});
|
|
</script>
|