yanzhen-design-vue
Version:
19 lines (18 loc) • 795 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { otherTablesProps, otherTablesEmits } from "../other-tables/src/other-tables.mjs";
import "../other-tables/src/hooks/index.mjs";
import { otherTablesApis } from "../other-tables/src/hooks/use-other-table-apis.mjs";
;
const otherTablesSelect = defineComponent("other-tables-select", {
props: otherTablesProps,
emits: otherTablesEmits,
apis: otherTablesApis,
component: defineAsyncComponent(() => import("../other-tables/src/other-table-select.vue.mjs")),
styleImport: () => import("./style/index.mjs")
});
const YzSchemaOtherTablesSelect = withInstall(otherTablesSelect);
export {
YzSchemaOtherTablesSelect,
YzSchemaOtherTablesSelect as default
};