Files
timmal/app/layouts/default.vue
Lucien Cartier-Tilet 40ae2145cc
All checks were successful
ci / ci (push) Successful in 16m22s
feat: authentication with OAuth
2025-12-12 03:08:52 +01:00

23 lines
556 B
Vue

<template>
<UDashboardGroup>
<UiSidebar class="min-w-60" />
<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>