123456789101112131415161718192021 |
- <!--
- * @Author: WangQiBiao
- * @Date: 2019-09-24 17:50:53
- * @LastEditors: WangQiBiao
- * @LastEditTime: 2019-09-26 18:02:23
- * @Description:
- -->
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <style lang="scss" scoped>
- #app{
- background: #0748A2 url('./assets/images/logo.jpg');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- width: 100vw;
- height: 100vh;
- }
- </style>
|