Skip to content
Snippets Groups Projects
Commit 5ca56bdf authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

change layout component order: drawer at last

parent 7cdfcfed
No related branches found
No related tags found
No related merge requests found
<template> <template>
<v-card> <v-card>
<v-app> <v-app>
<v-main style="min-height: 300px">
<!-- <v-container class="fill-height w-auto" > -->
<!-- <v-card flat max-width="1000" min-height="300" color="transparent">
<v-card-text> -->
<slot />
<!-- </v-card-text>
</v-card> -->
<v-footer id="app-footer" app>footer</v-footer>
<!-- </v-container> -->
</v-main>
<NavNavbar /> <NavNavbar />
<NavTableOfContent :links="page.body.toc.links" /> <NavTableOfContent :links="page.body.toc.links" />
<v-main style="min-height: 300px">
<v-container class="px-8">
<slot />
<v-footer app>footer</v-footer>
</v-container></v-main
>
</v-app> </v-app>
</v-card> </v-card>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
const { navigation, page, surround, globals } = useContent(); const { page } = useContent();
console.log("the toc", page.value); console.log("the toc", page.value);
</script> </script>
<style scoped>
#app-footer {
border-top: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
}
</style>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment