App.vue 235 B

12345678910111213141516171819202122
  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>