App.vue 259 B

123456789101112131415161718192021
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="less">
  7. html, body {
  8. width: 100%;
  9. height: 100%;
  10. overflow: hidden;
  11. }
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. #app {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. </style>