mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
264b3514d8
* fix: TextArea height bug when has `showCount` close #33049 * fix snapshot * revert form demo
434 B
434 B
order | title | ||||
---|---|---|---|---|---|
12 |
|
zh-CN
展示字数提示。
en-US
Show character counting.
import { Input } from 'antd';
const { TextArea } = Input;
const onChange = e => {
console.log('Change:', e.target.value);
};
ReactDOM.render(
<TextArea showCount maxLength={100} style={{ height: 120 }} onChange={onChange} />,
mountNode,
);