2025-12-07 21:27:23 +01:00
|
|
|
<template>
|
|
|
|
|
<UDashboardGroup>
|
2025-12-07 21:27:23 +01:00
|
|
|
<UiSidebar class="min-w-60" />
|
2025-12-07 21:27:23 +01:00
|
|
|
<UDashboardPanel>
|
|
|
|
|
<template #header>
|
2025-12-07 21:27:23 +01:00
|
|
|
<UDashboardNavbar :title="pageName ?? ''">
|
2025-12-07 21:27:23 +01:00
|
|
|
<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>
|