You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
331 B
19 lines
331 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-03-31 15:42:55
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-03-31 16:23:32
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<view class="uiWhiteBox">
|
|
<slot></slot>
|
|
</view>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.uiWhiteBox{
|
|
margin: 20rpx 30rpx;
|
|
background: #fff;
|
|
border-radius: 20rpx;
|
|
}
|
|
</style> |