#
whycq
2022-12-13 253edfa2aa96cdfd796a4ffa341b4e40c6903c9f
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
<template>
    <view class="y-wrapper">
        <slot />
    </view>
</template>
 
<script>
    export default {
        name:"y-warpper",
        data() {
            return {
                
            };
        }
    }
</script>
 
<style>
    .y-wrapper {
        width: 96%;
        min-height: 50rpx;
        background-color: #fff;
        border-radius: 5rpx;
        margin: 10rpx 15rpx 10rpx 15rpx;
        box-shadow: 0 0 10upx rgba(0, 0, 0, 0.1);
    }
</style>