Files
home/Projects/kompose/docs/app/layouts/docs.vue
2025-10-09 00:30:31 +02:00

25 lines
537 B
Vue

<script setup lang="ts">
import type { ContentNavigationItem } from '@nuxt/content'
import OgImageDocs from '~/components/OgImage/OgImageDocs.vue';
const navigation = inject<Ref<ContentNavigationItem[]>>('navigation')
</script>
<template>
<UContainer>
<UPage>
<template #left>
<UPageAside>
<UContentNavigation
highlight
:navigation="navigation"
/>
<OgImageDocs />
</UPageAside>
</template>
<slot />
</UPage>
</UContainer>
</template>