| 12345678910111213 |
- <template>
- <router-view v-slot="{ Component, route }">
- <keep-alive :include="['shipList', 'shipOwnerList']">
- <component :is="Component" :key="route.path" />
- </keep-alive>
- </router-view>
- </template>
- <script setup>
- import { useRoute } from "vue-router";
- const route = useRoute();
- </script>
- <style scoped></style>
|