yanzhen-design-vue
Version:
14 lines (13 loc) • 612 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
const vue = require("vue");
const core = require("@yanzhen-lowcode/core");
const checkbox = require("./src/checkbox.cjs");
const Checkbox = core.defineComponent("checkbox", {
props: checkbox.checkboxProps,
emits: checkbox.checkboxEmits,
component: vue.defineAsyncComponent(() => Promise.resolve().then(() => require("./src/checkbox.vue.cjs")))
});
const YzSchemaCheckbox = core.withInstall(Checkbox);
exports.YzSchemaCheckbox = YzSchemaCheckbox;
exports.default = YzSchemaCheckbox;