Commit 40da75e2 authored by sven's avatar sven

Merge remote-tracking branch 'origin/master'

parents 7d35fd73 afb107af
This diff is collapsed.
This diff is collapsed.
<!-- 此路由可作为父类路由通用路由页面使用 如需自定义父类路由页面 请参考 @/view/superAdmin/index.vue --> <!-- 此路由可作为父类路由通用路由页面使用 如需自定义父类路由页面 请参考 @/view/superAdmin/index.vue -->
<template> <template>
<div> <router-view v-slot="{ Component }">
<router-view v-slot="{ Component }"> <transition mode="out-in" name="el-fade-in-linear">
<transition mode="out-in" name="el-fade-in-linear"> <keep-alive :include="routerStore.keepAliveRouters">
<keep-alive :include="routerStore.keepAliveRouters"> <component :is="Component" />
<component :is="Component" /> </keep-alive>
</keep-alive> </transition>
</transition> </router-view>
</router-view>
</div>
</template> </template>
<script> <script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment