mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-29 03:48:26 +08:00
13 lines
212 B
Markdown
13 lines
212 B
Markdown
---
|
|
order: 5
|
|
title: 文本域
|
|
---
|
|
|
|
用于多行输入,指定 `type` 为一个特殊的 `textarea`。
|
|
|
|
````jsx
|
|
import { Input } from 'antd';
|
|
|
|
ReactDOM.render(<Input type="textarea" rows={4} />, mountNode);
|
|
````
|