yangan
2024-01-24 a81840024760c5919cbb49eb9f21a91b5f10bf99
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
<template>
    <div>
        <div class="warp"></div>
    </div>
</template>
<script>
export default {
data() {
    return {
  
    };
},
}
 
</script>
 
<style scoped lang="scss">
.warp{
    background: #F4F4F4;
    height: calc(100vh - 45px);
    
}
 
 
</style>