App.vue 607 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div id="app">
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive"></router-view>
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive"></router-view>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: "App",
  12. };
  13. </script>
  14. <style lang="scss">
  15. #app {
  16. font-family: "Avenir", Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. html,
  23. body {
  24. margin: 0;
  25. padding: 0;
  26. width: 100%;
  27. height: 100%;
  28. ::-webkit-scrollbar {
  29. display: none; /* Chrome Safari */
  30. }
  31. }
  32. </style>