2019-06-04 20:13:40 +08:00
|
|
|
## Wrapper
|
2019-05-08 22:55:41 +08:00
|
|
|
|
|
|
|
简单的一个容器。
|
|
|
|
|
2019-05-09 21:39:29 +08:00
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
|
|
| --------- | --------------------------------- | ----------- | ---------------------------- |
|
|
|
|
| type | `string` | `"wrapper"` | 指定为 Wrapper 渲染器 |
|
|
|
|
| className | `string` | | 外层 Dom 的类名 |
|
|
|
|
| size | `string` | | 支持: `xs`、`sm`、`md`和`lg` |
|
|
|
|
| body | [Container](./Types.md#container) | | 内容容器 |
|
2019-05-08 22:55:41 +08:00
|
|
|
|
|
|
|
```schema:height="200" scope="body"
|
|
|
|
{
|
|
|
|
"type": "wrapper",
|
|
|
|
"body": "Wrapped Body",
|
|
|
|
"className": "bg-white wrapper"
|
|
|
|
}
|
|
|
|
```
|