App.vue 220 B

123456789101112131415
  1. <template>
  2. <transition name="fade">
  3. <router-view></router-view>
  4. </transition>
  5. </template>
  6. <script>
  7. export default {
  8. computed: {
  9. key () {
  10. return this.$route.path + Math.random()
  11. }
  12. }
  13. }
  14. </script>