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.

29 lines
544 B
Vue

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