main.vue 371 B

1234567891011121314
  1. <template>
  2. <router-view v-slot="{ Component, route, ...a }">
  3. <keep-alive :exclude="readyRouteName.tabulation">
  4. <component :is="Component" />
  5. </keep-alive>
  6. <!-- <component :is="Component" v-else /> -->
  7. </router-view>
  8. </template>
  9. <script setup lang="ts">
  10. import { readyRouteMeta, readyRouteName } from "./router/constant";
  11. readyRouteMeta;
  12. </script>