App.vue 395 B

1234567891011121314151617181920212223
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style lang="scss">
  12. html,body,div,h1,h2,h3,h4,h5,p{
  13. margin: 0;
  14. padding: 0;
  15. box-sizing: border-box;
  16. }
  17. #app {
  18. font-family: Avenir, Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. font-size: 25px;
  22. }
  23. </style>