mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
6d253369d4
Co-authored-by: tangwenhui <tangwenhui@rd.netease.com>
761 B
761 B
order | title | ||||
---|---|---|---|---|---|
12 |
|
zh-CN
展示字数提示。
en-US
Show character counting.
import { Input } from 'antd';
import React from 'react';
const { TextArea } = Input;
const onChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
console.log('Change:', e.target.value);
};
const App: React.FC = () => (
<>
<TextArea
showCount
maxLength={100}
style={{ height: 120 }}
onChange={onChange}
placeholder="can resize"
/>
<TextArea
showCount
maxLength={100}
style={{ height: 120, resize: 'none' }}
onChange={onChange}
placeholder="disable resize"
/>
</>
);
export default App;