Files
oa/src/pages/sidebar/dashboards.vue
2025-05-24 01:49:48 +09:00

28 lines
565 B
Vue

<route lang="yaml">
meta:
requiresAuth: true
</route>
<script setup lang="ts">
const layoutSwitcher = useLayoutSwitcher()
</script>
<template>
<component
:is="(layoutSwitcher.dynamicLayoutComponent as any)"
v-bind="layoutSwitcher.dynamicLayoutProps"
close-on-change
default-sidebar="dashboard"
>
<!-- Content Wrapper -->
<RouterView v-slot="{ Component }">
<Transition
name="fade-fast"
mode="out-in"
>
<component :is="Component" />
</Transition>
</RouterView>
</component>
</template>