index.vue 384 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="base">
  3. <router-view v-slot="{ Component }">
  4. <transition>
  5. <component :is="Component" />
  6. </transition>
  7. </router-view>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {};
  14. },
  15. created() {
  16. },
  17. methods: {
  18. },
  19. };
  20. </script>
  21. <style scoped>
  22. .base {
  23. background-color: #F7F8FA;
  24. width: 100%;
  25. }
  26. </style>