This commit is contained in:
xiaozhiyong
2026-04-29 09:15:49 +08:00
parent eae5d5f1b4
commit 9c5961efe9
540 changed files with 36063 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div>
<router-view v-slot="{ Component }">
<transition mode="out-in" name="el-fade-in-linear">
<keep-alive :include="routerStore.keepAliveRouters">
<component :is="Component" />
</keep-alive>
</transition>
</router-view>
</div>
</template>
<script setup>
import { useRouterStore } from '@/pinia/modules/router'
const routerStore = useRouterStore()
defineOptions({
name: 'SuperAdmin'
})
</script>