We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855ddf8 commit b073f01Copy full SHA for b073f01
layer/app/app.vue
@@ -42,7 +42,7 @@ if (isEnabled.value) {
42
})
43
}
44
45
-const { data: navigation } = await useAsyncData(`navigation_${collectionName.value}`, () => queryCollectionNavigation(collectionName.value as keyof PageCollections), {
+const { data: navigation } = await useAsyncData(() => `navigation_${collectionName.value}`, () => queryCollectionNavigation(collectionName.value as keyof PageCollections), {
46
transform: (data) => {
47
const rootResult = data.find(item => item.path === '/docs')?.children || data || []
48
0 commit comments