1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <!--
| * @Author: daidai
| * @Date: 2022-01-12 14:06:47
| * @LastEditors: daidai
| * @LastEditTime: 2022-03-01 17:55:49
| * @FilePath: \web-pc\src\pages\big-screen\App.vue
| -->
| <template>
| <div id="app">
| <router-view/>
| </div>
| </template>
|
| <style lang="scss" scoped>
| #app {
| width: 100vw;
| height: 100vh;
| background-color: #03050C;
| // overflow: hidden;
| }
| </style>
|
|