1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <template>
| <div class="box">
| <el-card class="box-card1">
| <div v-for="o in 4" :key="o" class="text item">
| {{'列表内容 ' + o }}
| </div>
| </el-card>
| <el-card class="box-card2">
| <div v-for="o in 4" :key="o" class="text item">
| {{'列表内容 ' + o }}
| </div>
| </el-card>
| </div>
| </template>
|
| <script>
| export default {
|
| }
| </script>
|
| <style scoped>
| .box{
| width: 100%;
| height: calc(100vh - 124px);
| display: flex;
| padding: 20px;
| }
| .box-card1{
| width: 20%;
| height: 100%;
| background-color: #4b0f0f;
| }
| .box-card2{
| width: 80%;
| height: 100%;
| background-color: #58c8eb;
| }
| </style>
|
|