App.vue 416 B

12345678910111213141516171819202122
  1. <!--
  2. * @Author: WangQiBiao
  3. * @Date: 2019-09-24 17:50:53
  4. * @LastEditors: MoZhuangRu
  5. * @LastEditTime: 2019-12-31 11:26:49
  6. * @Description:
  7. -->
  8. <template>
  9. <div id="app">
  10. <router-view/>
  11. </div>
  12. </template>
  13. <style lang="scss" scoped>
  14. @import '../src/assets/css/theme.scss';
  15. #app{
  16. background: $big-bg;
  17. background-repeat: no-repeat;
  18. background-size: 100% 100%;
  19. width: 100vw;
  20. height: 100vh;
  21. }
  22. </style>