ant-design/components/input/demo/textarea-show-count.md
二货机器人 5f38753f6c
fix: align TextArea maxLength logic (#29867)
* fix composition

* fix input

* update doc

* fix tst

* more test case

* more test case
2021-03-23 15:03:47 +08:00

403 B

order title
12
zh-CN en-US
带字数提示的文本域 Textarea with character counting

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} onChange={onChange} />, mountNode);