longyvfengyun
2024-03-25 4b6b56fc1cbd9f6be12a5bc439e496f29c4b51a1
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>