OfficeSystem/node_modules/@climblee/uv-ui/components/uv-grid/props.js

20 lines
346 B
JavaScript
Raw Normal View History

2025-10-30 16:42:12 +08:00
export default {
props: {
// 分成几列
col: {
type: [String, Number],
default: 3
},
// 是否显示边框
border: {
type: Boolean,
default: false
},
// 宫格对齐方式,表现为数量少的时候,靠左,居中,还是靠右
align: {
type: String,
default: 'left'
},
...uni.$uv?.props?.grid
}
}