App.vue 277 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="less">
  7. #app {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. html {
  12. margin: 0;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. body {
  17. margin: 0;
  18. width: 100%;
  19. height: 100%
  20. }
  21. canvas:focus{
  22. outline: none;
  23. }
  24. </style>