hy-app
Version:
fix: 修复text和tag换掉
25 lines (23 loc) • 460 B
text/typescript
const checkboxItemProps = {
/** checkbox的名称 */
value: {
type: String,
default: ''
},
/** 是否默认选中 */
checked: {
type: Boolean,
default: false
},
/** 是否禁用 */
disabled: {
type: Boolean,
default: false
},
/** label提示文字 */
label: {
type: String,
default: ''
}
}
export default checkboxItemProps