We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f85d7 commit a709575Copy full SHA for a709575
docs/error.vue
@@ -21,10 +21,6 @@ useHead({
21
})
22
23
const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation())
24
-const { data: files } = useLazyFetch<ParsedContent[]>('/api/search.json', {
25
- default: () => [],
26
- server: false,
27
-})
28
29
provide('navigation', navigation.value?.[0]?.children || [])
30
</script>
@@ -43,10 +39,6 @@ provide('navigation', navigation.value?.[0]?.children || [])
43
39
44
40
<Footer />
45
41
46
- <ClientOnly>
47
- <LazyUContentSearch :files="files" :navigation="navigation" />
48
- </ClientOnly>
49
-
50
42
<UNotifications />
51
</div>
52
</template>
0 commit comments