yanzhen-design-vue
Version:
15 lines (14 loc) • 553 B
JavaScript
import { defineAsyncComponent } from "vue";
import { defineComponent, withInstall } from "@yanzhen-lowcode/core";
import { progressTxtProps, progressTxtEmits } from "./src/progress-txt.mjs";
const ProgressTxt = defineComponent("progress-txt", {
props: progressTxtProps,
emits: progressTxtEmits,
styleImport: () => import("./style/index.mjs"),
component: defineAsyncComponent(() => import("./src/progress-txt.vue.mjs"))
});
const YzSchemaProgressTxt = withInstall(ProgressTxt);
export {
YzSchemaProgressTxt,
YzSchemaProgressTxt as default
};