App.vue 311 B

12345678910111213141516171819202122
  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. </script>
  12. <style lang="scss">
  13. // 引入初始化样式
  14. @import '@/style/main.scss';
  15. @import '@/style/base.scss';
  16. #app {
  17. background: #eee;
  18. height: 100vh;
  19. }
  20. </style>