page-layout.vue 413 B

12345678910111213141516
  1. <template>
  2. <router-view v-slot="{ Component, route }">
  3. <transition name="fade" mode="out-in" appear>
  4. <component
  5. :is="Component"
  6. v-if="route.meta.ignoreCache"
  7. :key="route.fullPath"
  8. />
  9. <keep-alive v-else>
  10. <component :is="Component" :key="route.fullPath" />
  11. </keep-alive>
  12. </transition>
  13. </router-view>
  14. </template>
  15. <script lang="ts" setup></script>