ant-design/components/input/demo/textarea-resize.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

---
order: 99
title:
zh-CN: 文本域
en-US: TextArea
debug: true
---
## zh-CN
用于多行输入。
## en-US
For multi-line input.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Input } from 'antd';
import React, { useState } from 'react';
const { TextArea } = Input;
2019-05-07 14:57:32 +08:00
const defaultValue =
'The autoSize property applies to textarea nodes, and only the height changes automatically. In addition, autoSize can be set to an object, specifying the minimum number of rows and the maximum number of rows. The autoSize property applies to textarea nodes, and only the height changes automatically. In addition, autoSize can be set to an object, specifying the minimum number of rows and the maximum number of rows.';
const App: React.FC = () => {
const [autoResize, setAutoResize] = useState(false);
return (
<>
<Button onClick={() => setAutoResize(!autoResize)} style={{ marginBottom: 16 }}>
Auto Resize: {String(autoResize)}
</Button>
<TextArea rows={4} autoSize={autoResize} defaultValue={defaultValue} />
<TextArea allowClear style={{ width: 93 }} />
</>
);
};
export default App;
2019-05-07 14:57:32 +08:00
```