1234567891011121314151617181920212223242526272829 |
- <template>
- <section class="app-main">
- <transition name="fade" mode="out-in">
- <router-view :key="key"></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 {
-
- min-height: 100%;
- position: relative;
- overflow: hidden;
- }
- </style>
|