yanzhen-design-vue
Version:
14 lines (13 loc) • 452 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { sectionProps, sectionEmits } from "./src/section.mjs";
const Section = defineComponent("section", {
props: sectionProps,
emits: sectionEmits,
component: defineAsyncComponent(() => import("./src/section.vue.mjs"))
});
const YzSchemaSection = withInstall(Section);
export {
YzSchemaSection,
YzSchemaSection as default
};