12345678910111213141516171819202122 |
- <!--
- * @Author: WangQiBiao
- * @Date: 2019-09-24 17:50:53
- * @LastEditors: MoZhuangRu
- * @LastEditTime: 2019-12-31 11:26:49
- * @Description:
- -->
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <style lang="scss" scoped>
- @import '../src/assets/css/theme.scss';
- #app{
- background: $big-bg;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- width: 100vw;
- height: 100vh;
- }
- </style>
|