2019-05-08 22:55:41 +08:00
|
|
|
### Textarea
|
|
|
|
|
|
|
|
多行文本输入框。
|
|
|
|
|
|
|
|
- `type` 请设置成 `textarea`
|
2019-05-09 13:48:44 +08:00
|
|
|
- 更多配置请参考 [FormItem](./FormItem.md)
|
2019-05-08 22:55:41 +08:00
|
|
|
|
|
|
|
```schema:height="200" scope="form-item"
|
|
|
|
{
|
|
|
|
"type": "textarea",
|
|
|
|
"name": "text",
|
|
|
|
"label": "多行文本"
|
|
|
|
}
|
|
|
|
```
|