🔖 项目重命名.
This commit is contained in:
26
orion-visor-ui/src/layout/page-layout.vue
Normal file
26
orion-visor-ui/src/layout/page-layout.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<router-view v-slot="{ Component, route }">
|
||||
<transition name="fade" mode="out-in" appear>
|
||||
<!-- 渲染组件 -->
|
||||
<component :is="Component"
|
||||
v-if="route.meta.ignoreCache"
|
||||
:key="route.fullPath" />
|
||||
<!-- 渲染缓存组件 -->
|
||||
<keep-alive v-else :include="cacheList">
|
||||
<component :is="Component" :key="route.fullPath" />
|
||||
</keep-alive>
|
||||
</transition>
|
||||
</router-view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed } from 'vue';
|
||||
import { useTabBarStore } from '@/store';
|
||||
|
||||
const tabBarStore = useTabBarStore();
|
||||
|
||||
const cacheList = computed(() => tabBarStore.getCacheList);
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user