Files
hnxdcount-uniapp/uni_modules/uview-plus/components/u-cell-group/props.js
PC-202306242200\Administrator dac42e3b0c first commit
2026-03-28 23:09:02 +08:00

16 lines
360 B
JavaScript

import defProps from '../../libs/config/props.js';
export default {
props: {
// 分组标题
title: {
type: String,
default: () => defProps.cellGroup.title
},
// 是否显示外边框
border: {
type: Boolean,
default: () => defProps.cellGroup.border
}
}
}