We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c696932 commit 42be5dbCopy full SHA for 42be5db
docs/app/app.vue
@@ -1,5 +1,6 @@
1
<script setup lang="ts">
2
import type { ContentNavigationItem, PageCollections } from '@nuxt/content'
3
+import { Analytics } from '@vercel/analytics/nuxt'
4
5
const { locale, isEnabled } = useDocusI18n()
6
const collectionName = computed(() => isEnabled.value ? `docs_${locale.value}` : 'docs')
@@ -28,4 +29,6 @@ provide('navigation', navigation)
28
29
<ClientOnly>
30
<LazyUContentSearch :files="files" :navigation="navigation" />
31
</ClientOnly>
32
+
33
+ <Analytics />
34
</template>
0 commit comments