Files
timmal/app/layouts/default.vue
Lucien Cartier-Tilet db91dfc8fd
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
feat(ui): basic layout
2025-12-09 05:17:54 +01:00

23 lines
537 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"></div>
</template>
<template #body>
<slot />
</template>
</UDashboardPanel>
</UDashboardGroup>
</template>
<script setup lang="ts">
const { pageName } = usePageTitle();
</script>