appRouter.vue
547 Bytes
<template>
<div class="appcontainer">
<section class="app-main">
<keep-alive>
<router-view v-if="$route.meta.keepAlive"></router-view>
</keep-alive>
<router-view v-if="!$route.meta.keepAlive" :key="key"></router-view>
<!-- -->
</section>
</div>
</template>
<script>
export default {
computed: {
key() {
return this.$route.path
},
},
}
</script>
<style scoped lang='scss'>
.appcontainer {
width: 100%;
height: 100%;
.app-main {
width: 100%;
height: 100%;
}
}
</style>