38 lines
1.1 KiB
Vue
38 lines
1.1 KiB
Vue
<template>
|
|
<section class="app-main" :style="{ minHeight: minHeight }">
|
|
<router-view>
|
|
<template #default="{ Component, route }">
|
|
<transition
|
|
enter-active-class="animate__animated animate__fadeIn"
|
|
mode="out-in"
|
|
>
|
|
<keep-alive :include="cachedViews">
|
|
<component :is="Component" :key="route.path" />
|
|
</keep-alive>
|
|
</transition>
|
|
</template>
|
|
</router-view>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useSettingsStore, useTagsViewStore } from "@themeDefault/store";
|
|
import variables from "@themeDefault/styles/variables.module.scss";
|
|
|
|
const cachedViews = computed(() => useTagsViewStore().cachedViews); // 缓存页面集合
|
|
const minHeight = computed(() => {
|
|
if (useSettingsStore().tagsView) {
|
|
return `calc(100vh - ${variables["navbar-height"]} - ${variables["tags-view-height"]})`;
|
|
} else {
|
|
return `calc(100vh - ${variables["navbar-height"]})`;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-main {
|
|
position: relative;
|
|
background-color: var(--el-bg-color-page);
|
|
}
|
|
</style>
|