zview-plus
Version:
基于 Vue3 的 UI 组件库
29 lines (28 loc) • 405 B
JavaScript
const e = {
modelValue: {
// 是否选中
type: Boolean,
default: !1
},
label: {
type: String,
default: ""
},
disabled: {
type: Boolean,
default: !1
},
indeterminate: {
// 全选 和 非全选 的中间态样式
type: Boolean,
default: !1
},
border: {
// 带有边框
type: Boolean,
default: !1
}
};
export {
e as CheckBoxProps
};