App.vue 285 B

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