Files
ui/docs/layouts/docs.vue
2023-09-21 13:14:20 +02:00

24 lines
466 B
Vue

<template>
<UMain>
<UContainer>
<UPage>
<template #left>
<UAside>
<BranchSelect />
<UNavigationTree :links="mapContentNavigation(navigation)" />
</UAside>
</template>
<slot />
</UPage>
</UContainer>
</UMain>
</template>
<script setup lang="ts">
import type { NavItem } from '@nuxt/content/dist/runtime/types'
const navigation = inject<NavItem[]>('navigation')
</script>