Files
timmal/app/layouts/default.vue
Lucien Cartier-Tilet e284c07de0
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 7m11s
feat(ui): basic layout
2025-12-09 05:40:59 +01:00

23 lines
533 B
Vue

<template>
<UDashboardGroup>
<UiSidebar />
<UDashboardPanel>
<template #header>
<UDashboardNavbar :title="pageName">
<template #right>
<UColorModeButton />
</template>
</UDashboardNavbar>
<div class="flex flex-row content-center justify-between w-full" />
</template>
<template #body>
<slot />
</template>
</UDashboardPanel>
</UDashboardGroup>
</template>
<script setup lang="ts">
const { pageName } = usePageTitle();
</script>