App.vue 277 B

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