index.vue 348 B

12345678910111213141516
  1. <template>
  2. <router-view>
  3. <template #default="{Component}">
  4. <keep-alive :include="cachePage">
  5. <component :is="Component"></component>
  6. </keep-alive>
  7. </template>
  8. </router-view>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'CipAlivePages',
  13. inheritAttrs: false,
  14. props: { cachePage: Array }
  15. }
  16. </script>