diff --git a/docs/app/app.vue b/docs/app/app.vue index 1e0e57ee..7e326eae 100644 --- a/docs/app/app.vue +++ b/docs/app/app.vue @@ -11,7 +11,6 @@ const { integrity, api } = runtimeConfig.public.content const { data: navigation } = await useAsyncData('navigation', () => fetchContentNavigation(), { default: () => [] }) const { data: files } = await useLazyFetch(`${api.baseURL}/search${integrity ? '.' + integrity : ''}`, { default: () => [] }) -const open = ref(false) const searchTerm = ref('') // watch(searchTerm, debounce((query: string) => { @@ -55,7 +54,6 @@ useServerSeoMeta({ twitterCard: 'summary_large_image' }) -provide('open', open) provide('navigation', navigation) provide('files', files) @@ -74,6 +72,6 @@ provide('files', files)