export interface InputConfig { /** * 组件对象,用于区分组件类型 */ ui: { type: 'input'; }; /** * 输入框类型, text,number,password,默认为text */ type?: string; /** * 是否禁用,默认为false */ disabled?: boolean; /** * 输入框长度 */ width?: string; /** * 输入框的值 */ value?: any; /** * 输入框提示文字、label显示文字 */ label?: string; }