mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-16 00:22:53 +00:00
84 lines
1.5 KiB
Vue
84 lines
1.5 KiB
Vue
<template>
|
|
<div class="app-views">
|
|
<router-view v-slot="{ Component }">
|
|
<el-scrollbar>
|
|
<transition :name="app.info.router.transition">
|
|
<keep-alive :include="caches">
|
|
<component :is="Component" />
|
|
</keep-alive>
|
|
</transition>
|
|
</el-scrollbar>
|
|
</router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import { useBase } from "/$/base";
|
|
import { useCool } from "/@/cool";
|
|
|
|
const { route } = useCool();
|
|
const { process, app } = useBase();
|
|
|
|
// 缓存列表
|
|
const caches = computed(() => {
|
|
return process.list
|
|
.filter((e) => e.meta?.keepAlive)
|
|
.map((e) => {
|
|
return e.path.substring(1, e.path.length).replace(/\//g, "-");
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-views {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
margin: 0 10px;
|
|
margin-bottom: 10px;
|
|
height: 100%;
|
|
width: calc(100% - 20px);
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
position: relative;
|
|
|
|
:deep(.el-scrollbar__view) {
|
|
height: 100%;
|
|
}
|
|
|
|
.slide-enter-active {
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
transition: all 0.4s ease-in-out 0.2s;
|
|
}
|
|
|
|
.slide-leave-active {
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
transition: all 0.4s ease-in-out;
|
|
}
|
|
|
|
.slide-enter-to {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.slide-enter-from {
|
|
transform: translate3d(-5%, 0, 0);
|
|
opacity: 0;
|
|
}
|
|
|
|
.slide-leave-to {
|
|
transform: translate3d(5%, 0, 0);
|
|
opacity: 0;
|
|
}
|
|
|
|
.slide-leave-from {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|