App.vue 454 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {
  10. }
  11. }
  12. </script>
  13. <style>
  14. @import './assets/style/global.css';
  15. #app {
  16. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. color: #2c3e50;
  20. position: absolute;
  21. height: 100%;
  22. width: 100%;
  23. }
  24. </style>