-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsidebar.vue
42 lines (40 loc) · 1.14 KB
/
sidebar.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<template>
<c-stack as="ul" spacing="0" list-style-type="none" font-size="sm">
<template v-if="navigation">
<li v-for="(item, i) in navigation" :key="`path:${i}`">
<template v-if="item">
<doc-link :nav-item-path="item._path">
{{ item?.title }}
</doc-link>
<c-stack
v-if="item?.children?.length"
as="ul"
spacing="0"
list-style-type="none"
>
<doc-link
v-for="nestedItem in item.children.filter(
(_) => _._path !== item._path
)"
:key="`path:${nestedItem._path}`"
:nav-item-path="nestedItem._path"
pl="4"
>
{{ nestedItem.title }}
</doc-link>
</c-stack>
</template>
</li>
</template>
</c-stack>
</template>
<script lang="ts" setup async>
import { CStack } from '@chakra-ui/vue-next'
import DocLink from '~/components/navigation/doc-link.vue'
/**
* Documentation Fetching
*/
const { data: navigation } = await useAsyncData('navigation', () =>
fetchContentNavigation()
)
</script>