App.vue 357B

12345678910111213141516171819202122
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. import './assets/main.css'
  8. export default {
  9. name: 'app'
  10. }
  11. </script>
  12. <style lang="less" scoped>
  13. #app {
  14. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. width: 100%;
  18. height: 100%;
  19. }
  20. </style>