index.vue 233 B

1234567891011121314
  1. <template>
  2. <div>
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive" />
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive" />
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'Example'
  12. }
  13. </script>