UNPKG

yanzhen-design-vue

Version:

21 lines (20 loc) 663 B
import { defineComponent, openBlock, createBlock, unref } from "vue"; import { useFormItemWrapper } from "./use-form-item-wrapper.mjs"; import { formItemProps, formItemEmits } from "./form-item.mjs"; const _sfc_main = /* @__PURE__ */ defineComponent({ ...{ name: "FormItemWrapper" }, __name: "form-item-wrapper", props: formItemProps, emits: formItemEmits, setup(__props, { emit: __emit }) { const props = __props; const emit = __emit; const [, FormItemWrapper] = useFormItemWrapper(props, emit); return (_ctx, _cache) => { return openBlock(), createBlock(unref(FormItemWrapper)); }; } }); export { _sfc_main as default };