ant-design/components/collapse/index.zh-CN.md
Tom Xu d44f404eae
docs: sort api (#27251)
* chore: improve sort api table scripts

* sort api

* add ignore

* Revert "sort api"

This reverts commit 343505d5f0.

* sort api

* Update package.json

* sort api

* Delete sort-api.js

* sort api

* sort api

* sort api

* fix

* Update index.zh-CN.md

* fix input-number

* fix input-number

* sort func

* fix

* Method moved to the end

* carousel method
2020-10-21 10:33:43 +08:00

1.7 KiB
Raw Blame History

category type title subtitle cols cover
Components 数据展示 Collapse 折叠面板 1 https://gw.alipayobjects.com/zos/alicdn/IxH16B9RD/Collapse.svg

可以折叠/展开的内容区域。

何时使用

  • 对复杂区域进行分组和隐藏,保持页面的整洁。
  • 手风琴 是一种特殊的折叠面板,只允许单个内容区域展开。

API

Collapse

参数 说明 类型 默认值 版本
accordion 手风琴模式 boolean false
activeKey 当前激活 tab 面板的 key string[] | string
number[] | number
默认无accordion 模式下默认第一个元素
bordered 带边框风格的折叠面板 boolean true
defaultActiveKey 初始化选中面板的 key string[] | string
number[] | number
-
destroyInactivePanel 销毁折叠隐藏的面板 boolean false
expandIcon 自定义切换图标 (panelProps) => ReactNode -
expandIconPosition 设置图标位置 left | right -
ghost 使折叠面板透明且无边框 boolean false 4.4.0
onChange 切换面板的回调 function -

Collapse.Panel

参数 说明 类型 默认值 版本
disabled 禁用后的面板展开与否将无法通过用户交互改变 boolean false
extra 自定义渲染每个面板右上角的内容 ReactNode -
forceRender 被隐藏时是否渲染 DOM 结构 boolean false
header 面板头内容 ReactNode -
key 对应 activeKey string | number -
showArrow 是否展示当前面板上的箭头 boolean true