UNPKG

yanzhen-design-vue

Version:

14 lines (13 loc) 465 B
import { defineAsyncComponent } from "vue"; import { defineComponent, withInstall } from "@yanzhen-lowcode/core"; import { findDataProps, findDataEmits } from "./src/findData.mjs"; const FindData = defineComponent("find-data", { props: findDataProps, emits: findDataEmits, component: defineAsyncComponent(() => import("./src/findData.vue.mjs")) }); const YzSchemaFindData = withInstall(FindData); export { YzSchemaFindData, YzSchemaFindData as default };