123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <script setup lang="ts">
- import type { NuxtError } from '#app'
- defineProps<{
- error: NuxtError
- }>()
- useHead({
- htmlAttrs: {
- lang: 'en',
- },
- })
- useSeoMeta({
- title: 'Page not found',
- description: 'We are sorry but this page could not be found.',
- })
- const { data: navigation } = await useAsyncData('navigation', () => queryCollectionNavigation('docs'))
- const { data: files } = useLazyAsyncData('search', () => queryCollectionSearchSections('docs'), {
- server: false,
- })
- provide(navigationInjectionKey, navigation)
- </script>
- <template>
- <UApp>
- <AppHeader />
- <UError :error="error" />
- <AppFooter />
- <ClientOnly>
- <LazyUContentSearch
- :files="files"
- :navigation="navigation"
- />
- </ClientOnly>
- </UApp>
- </template>
|