/** * 文本域属性 */ import { BaseProps } from '.' export interface TextAreaProps extends BaseProps { /** * 自适应内容高度,可设置为 true | false 或对象:{ minRows: 2, maxRows: 6 } */ autosize?: boolean | { minRows: number; maxRows: number } /** * 可以点击清除图标删除内容可以点击清除图标删除内容 */ allowClear?: boolean /** * 是否显示字数 */ showCount?: boolean /** * 固定行高 */ rows?: number }