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