amis/docs/zh-CN/components/container.md

45 lines
1.3 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: Container 容器
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: ⚙ 组件
menuName: Container 容器
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 38
---
2020-07-29 16:20:21 +08:00
Container 是一种容器组件,它可以渲染其他 amis 组件
2020-07-28 10:03:53 +08:00
## 基本用法
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "container",
"body":"这里是容器内容区"
}
```
2021-01-19 17:38:57 +08:00
### style
container 可以通过 style 来设置样式,比如背景色或背景图,注意这里的属性是使用驼峰写法,是 `backgroundColor` 而不是 `background-color`
```schema: scope="body"
{
"type": "container",
"style": {
"backgroundColor": "#C4C4C4"
},
"body":"这里是容器内容区"
}
```
2020-07-28 10:03:53 +08:00
## 属性表
2020-07-29 16:20:21 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| ------------- | --------------------------------- | --------- | ------------------- |
| type | `string` | `"alert"` | 指定为 alert 渲染器 |
| className | `string` | | 外层 Dom 的类名 |
| bodyClassName | `string` | | 容器内容区的类名 |
2021-01-19 17:38:57 +08:00
| style | `Object` | | 自定义样式 |
2020-07-29 16:20:21 +08:00
| body | [SchemaNode](../types/schemanode) | | 容器内容 |