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

13 lines
212 B
Markdown
Raw Normal View History

2016-06-03 15:00:01 +08:00
---
order: 5
title: 文本域
---
用于多行输入,指定 `type` 为一个特殊的 `textarea`
````jsx
import { Input } from 'antd';
ReactDOM.render(<Input type="textarea" rows={4} />, mountNode);
````