ant-design/components/input/demo/textarea-show-count.md
afc163 264b3514d8
fix: TextArea height bug (#33055)
* fix: TextArea height bug when has `showCount`

close #33049

* fix snapshot

* revert form demo
2021-11-27 15:35:42 +08:00

434 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} style={{ height: 120 }} onChange={onChange} />,
  mountNode,
);