App.vue 387 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style lang="scss">
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. html,body {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. #app {
  16. font-family: Avenir, Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. width: 100%;
  22. height: 100%;
  23. }
  24. </style>