UNPKG

@wanghonggan/uv-ui

Version:

uv-ui 破釜沉舟之兼容vue3+2、nvue、app、h5、小程序等多端基于uni-app和uView2.x的生态框架,支持单独导入,开箱即用,利剑出击。

27 lines (26 loc) 540 B
import { getPropsByKey } from "../../libs/config/config"; export default { props: { // 背景颜色(默认transparent) bgColor: { type: String, default: 'transparent' }, // 分割槽高度,单位px(默认20) height: { type: [String, Number], default: 20 }, // 与上一个组件的距离 marginTop: { type: [String, Number], default: 0 }, // 与下一个组件的距离 marginBottom: { type: [String, Number], default: 0 }, ...getPropsByKey('gap') } }