yanzhen-design-vue
Version:
15 lines (14 loc) • 555 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { radioGroupProps, radioGroupEmits } from "../radio/src/radio-group.mjs";
const RadioGroup = defineComponent("radio-group", {
props: radioGroupProps,
emits: radioGroupEmits,
styleImport: () => import("./style/index.mjs"),
component: defineAsyncComponent(() => import("../radio/src/radio-group.vue.mjs"))
});
const YzSchemaRadioGroup = withInstall(RadioGroup);
export {
YzSchemaRadioGroup,
YzSchemaRadioGroup as default
};