mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:18:03 +08:00
19 lines
770 B
Markdown
19 lines
770 B
Markdown
## Wrapper
|
|
|
|
简单的一个容器。
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
| --------- | --------------------------------- | ----------- | ---------------------------- |
|
|
| type | `string` | `"wrapper"` | 指定为 Wrapper 渲染器 |
|
|
| className | `string` | | 外层 Dom 的类名 |
|
|
| size | `string` | | 支持: `xs`、`sm`、`md`和`lg` |
|
|
| body | [Container](./Types.md#container) | | 内容容器 |
|
|
|
|
```schema:height="200" scope="body"
|
|
{
|
|
"type": "wrapper",
|
|
"body": "Wrapped Body",
|
|
"className": "bg-white wrapper"
|
|
}
|
|
```
|