App.vue 322 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app">
  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. <style>
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. html,
  15. body {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. #app {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. </style>