49 lines
940 B
Vue
49 lines
940 B
Vue
![]() |
<!-- 主视图 -->
|
||
|
<template>
|
||
|
<section class="app-main">
|
||
|
<router-view v-slot="{Component}">
|
||
|
<transition name="fade-transform" mode="out-in">
|
||
|
<!-- <keep-alive> -->
|
||
|
<component :is="Component" :key="key" />
|
||
|
<!-- </keep-alive> -->
|
||
|
</transition>
|
||
|
</router-view>
|
||
|
</section>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { computed } from 'vue'
|
||
|
import { useRoute } from 'vue-router'
|
||
|
|
||
|
const route = useRoute()
|
||
|
const key = computed(() => {
|
||
|
return route.path
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.app-main {
|
||
|
/* 50 = navbar height */
|
||
|
min-height: calc(100vh - 50px);
|
||
|
width: 100%;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.fixed-header + .app-main {
|
||
|
padding-top: 50px;
|
||
|
height: 100vh;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.hasTagsView {
|
||
|
.app-main {
|
||
|
/* 84 = navbar + tags-view = 50 + 34 */
|
||
|
min-height: calc(100vh - 84px);
|
||
|
}
|
||
|
.fixed-header + .app-main {
|
||
|
padding-top: 84px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|