AppMain.vue 310 B

123456789101112131415
  1. <template>
  2. <div class="app-main">
  3. <router-view v-slot="{ Component, route }">
  4. <transition name="fade-transform" mode="out-in">
  5. <component :is="Component" :key="route" />
  6. </transition>
  7. </router-view>
  8. </div>
  9. </template>
  10. <style lang="scss">
  11. .app-main {
  12. display: flex;
  13. }
  14. </style>