/** * @description input api * @author 阿怪 * @date 2023/4/20 17:31 * @version v1.0.0 * * 江湖的业务千篇一律,复杂的代码好几百行。 */ import { MCOPO } from '../../types/props'; import { InputProps } from './index'; export const props: MCOPO = { type: { type: String, default: 'text' }, placeholder: { type: String, default: '' }, modelValue: { type: [String, Number], default: '' }, readonly: { type: Boolean, default: false }, disabled: { type: Boolean, default: false }, autofocus: { type: Boolean, default: false }, };