feat(Error): Added Error Page

main
Flycro 2023-11-11 16:33:02 +01:00
parent db084a579f
commit ee69746ac7
1 changed files with 13 additions and 0 deletions

13
error.vue Normal file
View File

@ -0,0 +1,13 @@
<script setup lang="ts">
import type { NuxtError } from '#app'
defineProps<{
error: NuxtError
}>()
</script>
<template>
<NuxtLayout>
<UPageError :error="error" />
</NuxtLayout>
</template>