yanzhen-design-vue
Version:
14 lines (13 loc) • 416 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { tabsProps, tabsEmits } from "./src/tabs.mjs";
const Tabs = defineComponent("tabs", {
props: tabsProps,
emits: tabsEmits,
component: defineAsyncComponent(() => import("./src/tabs.vue.mjs"))
});
const YzSchemaTabs = withInstall(Tabs);
export {
YzSchemaTabs,
YzSchemaTabs as default
};