Files
gremiumhub/legalconsenthub/app/error.vue

25 lines
341 B
Vue

<template>
<UApp>
<UError :error="error" />
</UApp>
</template>
<script setup lang="ts">
import type { NuxtError } from '#app'
defineProps<{
error: NuxtError
}>()
useSeoMeta({
title: 'Page not found',
description: 'We are sorry but this page could not be found.'
})
useHead({
htmlAttrs: {
lang: 'en'
}
})
</script>