29 lines
544 B
Vue
29 lines
544 B
Vue
<template>
|
|
<section class="app-main">
|
|
<transition name="fade" mode="out-in">
|
|
<!-- <router-view :key="key"></router-view> -->
|
|
<router-view/>
|
|
</transition>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppMain',
|
|
computed: {
|
|
// key() {
|
|
// return this.$route.name !== undefined ? this.$route.name + +new Date() : this.$route + +new Date()
|
|
// }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.app-main {
|
|
/*50 = navbar */
|
|
min-height: calc(100vh - 50px);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|