Files
home/Projects/kompose/docs/app/layouts/docs.vue

23 lines
449 B
Vue
Raw Normal View History

2025-10-09 00:30:31 +02:00
<script setup lang="ts">
2025-10-10 16:43:21 +02:00
import type { ContentNavigationItem } from "@nuxt/content";
2025-10-09 00:30:31 +02:00
2025-10-10 16:43:21 +02:00
const navigation = inject<Ref<ContentNavigationItem[]>>("navigation");
2025-10-09 00:30:31 +02:00
</script>
<template>
<UContainer>
<UPage>
<template #left>
<UPageAside>
<UContentNavigation
highlight
:navigation="navigation"
/>
</UPageAside>
</template>
<slot />
</UPage>
</UContainer>
</template>