mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:13:35 +09:00
28 lines
565 B
Vue
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>
|