23 lines
449 B
Vue
Executable File
23 lines
449 B
Vue
Executable File
<script setup lang="ts">
|
|
import type { ContentNavigationItem } from "@nuxt/content";
|
|
|
|
const navigation = inject<Ref<ContentNavigationItem[]>>("navigation");
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer>
|
|
<UPage>
|
|
<template #left>
|
|
<UPageAside>
|
|
<UContentNavigation
|
|
highlight
|
|
:navigation="navigation"
|
|
/>
|
|
</UPageAside>
|
|
</template>
|
|
|
|
<slot />
|
|
</UPage>
|
|
</UContainer>
|
|
</template>
|