mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 11:07:52 +08:00
c8c4b6efa3
* 文档优化 * 文档细节调整,删除示例的 height 设置,使用自动撑开 * sdk 使用完整例子,因为新版没发布 * 修复官网语言不正确问题 * 增加 icon 调整颜色及大小的例子 * 修复文字错误 * 补充 each 的文档 * 修复 zh-CN 大写问题
32 lines
1.4 KiB
Markdown
Executable File
32 lines
1.4 KiB
Markdown
Executable File
---
|
|
title: Collapse 折叠器
|
|
description:
|
|
type: 0
|
|
group: ⚙ 组件
|
|
menuName: Collapse 折叠器
|
|
icon:
|
|
order: 36
|
|
---
|
|
|
|
## 基本用法
|
|
|
|
```schema: scope="body"
|
|
{
|
|
"type": "collapse",
|
|
"title": "标题",
|
|
"body": "这里是内容"
|
|
}
|
|
```
|
|
|
|
## 属性表
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
| ---------------- | --------------------------------- | -------------------------------------- | ---------------------- |
|
|
| type | `string` | `"collapse"` | 指定为 Collapse 渲染器 |
|
|
| title | [SchemaNode](../types/schemanode) | | 标题 |
|
|
| body | [SchemaNode](../types/schemanode) | | 内容 |
|
|
| className | `string` | `bg-white wrapper` | CSS 类名 |
|
|
| headingClassName | `string` | `font-thin b-b b-light text-lg p-b-xs` | 标题 CSS 类名 |
|
|
| bodyClassName | `string` | | 内容 CSS 类名。 |
|
|
| collapsed | `boolean` | `false` | 默认是否要收起。 |
|