various-ui
Version:
This is a test version of the Vue 3 component library
18 lines (15 loc) • 494 B
JavaScript
;
const UiCheckboxPropsOption = {
modelValue: { type: Boolean, default: false },
disabled: { type: Boolean, default: false },
value: { required: true },
mode: { type: String, default: "default" },
size: { type: String, default: "default" }
};
const UiCheckboxEmits = {
"change": (_ev) => true,
"update:modelValue": (_data) => true
};
exports.UiCheckboxEmits = UiCheckboxEmits;
exports.UiCheckboxPropsOption = UiCheckboxPropsOption;
//# sourceMappingURL=index.js.map