longyvfengyun
2023-11-16 b537c7bccbcc20644902ad6f0e309bbe9a6eda24
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
<script setup>
 
</script>
 
<template>
    <div class="box-wrapper">
        <div class="box-content">
            <slot></slot>
        </div>
    </div>
</template>
 
<style scoped lang="less">
    .box-wrapper {
        width: 100%;
        height: 100%;
        background-image: url("./images/box_bg.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .box-content {
        padding: 16px;
        width: 100%;
        height: 100%;
    }
</style>