App.vue 408 B

123456789101112131415161718192021222324252627
  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. // 引入初始化样式
  13. @import '@/style/main.scss';
  14. @import '@/style/base.scss';
  15. @import '@/style/mobile.scss';
  16. #app {
  17. background: #eee;
  18. height: 100vh;
  19. overflow: hidden;
  20. font-weight: 400 !important;
  21. }
  22. .el-button{
  23. font-weight: 400 !important;
  24. }
  25. </style>