AppMain.vue 282 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <template> <section class="app-main"> <transition name="fade-transform" mode="out-in"> <router-view /> </transition> </section> </template> <script> export default { name: 'AppMain', computed: { key () { return this.$route.path } } } </script>