App.vue 296 B

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