App.vue 401 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. export default {
  6. name: 'App',
  7. components: {},
  8. };
  9. </script>
  10. <style>
  11. * {
  12. margin: 0;
  13. padding: 0;
  14. box-sizing: border-box;
  15. }
  16. #app {
  17. font-family: Avenir, Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. font-weight: 400;
  21. color: #2c3e50;
  22. width: 100vw;
  23. height: 100vh;
  24. }
  25. </style>