Nenhuma Descrição

AppMain.vue 534B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <section class="app-main">
  3. <transition name="fade" mode="out-in">
  4. <router-view :key="key"></router-view>
  5. <!-- <router-view></router-view> -->
  6. </transition>
  7. </section>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'AppMain',
  12. computed: {
  13. key() {
  14. return this.$route.name !== undefined ? this.$route.name + +new Date() : this.$route + +new Date()
  15. }
  16. }
  17. }
  18. </script>
  19. <style scoped>
  20. .app-main {
  21. /*50 = navbar */
  22. min-height: 100%;
  23. position: relative;
  24. overflow: hidden;
  25. }
  26. </style>