mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
138b953afd
* feat: TextArea showCount * update: TextArea showCount test * update: TextArea showCount test * update: test * update: test * update: test * update: interface * revert: interface change
23 lines
313 B
Markdown
23 lines
313 B
Markdown
---
|
|
order: 12
|
|
title:
|
|
zh-CN: 带字数提示的文本域
|
|
en-US: Textarea with character counting
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
展示字数提示。
|
|
|
|
## en-US
|
|
|
|
Show character counting.
|
|
|
|
```jsx
|
|
import { Input } from 'antd';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
ReactDOM.render(<TextArea showCount maxLength={100} />, mountNode);
|
|
```
|