AppMain.vue 330 B

12345678910111213
  1. <template>
  2. <router-view v-slot="{ Component, route }">
  3. <keep-alive :include="['shipList', 'shipOwnerList']">
  4. <component :is="Component" :key="route.path" />
  5. </keep-alive>
  6. </router-view>
  7. </template>
  8. <script setup>
  9. import { useRoute } from "vue-router";
  10. const route = useRoute();
  11. </script>
  12. <style scoped></style>