mt-ui-components-vue3
Version:
玛果添实UI组件库(Vue3)
21 lines • 817 B
JavaScript
/* Analyzed bindings: {
"Input": "setup-maybe-ref",
"inputProps": "setup-maybe-ref",
"props": "setup-reactive-const"
} */
import { defineComponent as _defineComponent } from 'vue';
import { unref as _unref, normalizeProps as _normalizeProps, guardReactiveProps as _guardReactiveProps, openBlock as _openBlock, createBlock as _createBlock } from "vue";
import { Input } from 'ant-design-vue';
import inputProps from 'ant-design-vue/lib/input/inputProps';
const __sfc_main__ = _defineComponent({
props: {
...inputProps(),
},
setup(__props) {
const props = __props;
return (_ctx, _cache) => {
return (_openBlock(), _createBlock(_unref(Input), _normalizeProps(_guardReactiveProps(props)), null, 16 /* FULL_PROPS */));
};
}
});
export default __sfc_main__;