You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tanghe-report/report-ui/src/views/layout/components/AppMain.vue

35 lines
741 B
Vue

<template>
<section class="app-main">
<transition name="fade-transform" mode="out-in">
<!-- or name="fade" -->
<!-- <router-view :key="key"></router-view> -->
<keep-alive :include="cacheViews">
<router-view></router-view>
</keep-alive>
</transition>
</section>
</template>
<script>
import {mapGetters} from "vuex"
export default {
name: 'AppMain',
computed: {
...mapGetters(['cacheViews']),
key() {
return this.$route.name !== undefined ? this.$route.name + +new Date() : this.$route + +new Date()
}
}
}
</script>
<style scoped>
.app-main {
/*50 = navbar */
height: calc(100vh - 50px);
position: relative;
overflow: auto;
background: #f5f8fa;
}
</style>