App.vue 475 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. </script>
  12. <style lang="scss">
  13. // 引入初始化样式
  14. @import '@/style/main.scss';
  15. @import '@/style/base.scss';
  16. @import '@/style/mobile.scss';
  17. @import '@/style/app.scss';
  18. #app {
  19. background: #eee;
  20. height: 100vh;
  21. overflow: hidden;
  22. }
  23. .el-upload-dragger{
  24. max-width: 210px !important;
  25. max-height: 297px !important;
  26. }
  27. </style>