App.vue 317 B

12345678910111213141516171819
  1. <!--
  2. * @Author: WangQiBiao
  3. * @Date: 2019-09-24 17:50:53
  4. * @LastEditors: wjc
  5. * @LastEditTime: 2025-11-17 16:41:21
  6. * @Description:
  7. -->
  8. <template>
  9. <div id="app">
  10. <router-view/>
  11. </div>
  12. </template>
  13. <style lang="scss">
  14. @import '../src/assets/css/theme.scss';
  15. #app{
  16. width: 100vw;
  17. height: 100vh;
  18. }
  19. </style>