ant-design/components/input/demo/textarea-show-count.md
zhangchen 138b953afd
feat: TextArea showCount (#26952)
* feat: TextArea showCount

* update: TextArea showCount test

* update: TextArea showCount test

* update: test

* update: test

* update: test

* update: interface

* revert: interface change
2020-10-10 11:30:58 +08:00

313 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;

ReactDOM.render(<TextArea showCount maxLength={100} />, mountNode);