App.vue 361 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div id="app" class="">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app',
  9. created() {
  10. }
  11. }
  12. </script>
  13. <style>
  14. * {
  15. padding: 0;
  16. margin: 0;
  17. box-sizing: border-box;
  18. }
  19. html,
  20. body {
  21. width: 100%;
  22. height: 100%;
  23. }
  24. #app {
  25. height: 100%;
  26. }
  27. body {
  28. padding: 0;
  29. margin: 0;
  30. }
  31. </style>