App.vue 408 B

123456789101112131415161718192021
  1. <!--
  2. * @Author: WangQiBiao
  3. * @Date: 2019-09-24 17:50:53
  4. * @LastEditors: WangQiBiao
  5. * @LastEditTime: 2019-09-26 18:02:23
  6. * @Description:
  7. -->
  8. <template>
  9. <div id="app">
  10. <router-view/>
  11. </div>
  12. </template>
  13. <style lang="scss" scoped>
  14. #app{
  15. background: #0748A2 url('./assets/images/logo.jpg');
  16. background-repeat: no-repeat;
  17. background-size: 100% 100%;
  18. width: 100vw;
  19. height: 100vh;
  20. }
  21. </style>