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.
shop-app/components/UiWhiteBox.vue

19 lines
343 B

<!--
* @Author: ch
* @Date: 2022-03-31 15:42:55
* @LastEditors: ch
* @LastEditTime: 2022-04-19 13:57:30
* @Description: file content
-->
<template>
<view class="ui-white-box">
<slot></slot>
</view>
</template>
<style lang="scss" scoped>
.ui-white-box{
margin: 20rpx 30rpx;
background: $color-grey0;
border-radius: 20rpx;
}
</style>