t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
51 lines (50 loc) • 890 B
JavaScript
const l = {
modelValue: {
type: [String, Number, Array],
default: () => []
},
disabled: {
type: Boolean,
default: () => !1
},
vertical: {
type: Boolean,
default: () => !1
},
label: {
type: String,
default: () => ""
},
changeEvent: {
type: Function,
default: () => null
},
border: {
type: Boolean,
default: () => !1
},
size: {
type: String,
default: () => "middle",
validator: (e) => ["large", "middle", "small", "mini"].includes(e)
},
columnGap: {
type: [String, Number],
default: () => ""
},
rowGap: {
type: [String, Number],
default: () => ""
},
change: {
type: Function,
default: () => null
}
}, t = {
"update:modelValue": (e) => Array.isArray(e)
}, a = Symbol("f-checkbox-group-props-key");
export {
t as Emits,
l as Props,
a as checkboxGroupPropsKey
};