yanzhen-design-vue
Version:
15 lines (14 loc) • 615 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { contactsSelectProps, contactsSelectEmits } from "../contacts/src/contacts-select.mjs";
const ContactsSelect = defineComponent("contacts-select", {
props: contactsSelectProps,
emits: contactsSelectEmits,
styleImport: () => import("./style/index.mjs"),
component: defineAsyncComponent(async () => import("../contacts/src/contacts-select.vue.mjs"))
});
const YzSchemaContactsSelect = withInstall(ContactsSelect);
export {
YzSchemaContactsSelect,
YzSchemaContactsSelect as default
};