ant-design-vue/components/collapse/index.zh-CN.md

22 lines
681 B
Markdown
Raw Normal View History

2018-02-01 10:18:05 +00:00
## API
### Collapse
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
2018-02-06 08:53:30 +00:00
| activeKey(v-model) | 当前激活 tab 面板的 key | string\[]\|string | 默认无accordion模式下默认第一个元素 |
2018-02-02 08:34:27 +00:00
| defaultActiveKey | 初始化选中面板的 key | string | 无 |
2018-02-06 08:53:30 +00:00
### 事件
| 事件名称 | 说明 | 回调参数 |
| --- | --- | --- |
| change | 切换面板的回调 | function(key) |
2018-02-01 10:18:05 +00:00
### Collapse.Panel
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| disabled | 禁用后的面板展开与否将无法通过用户交互改变 | boolean | false |
| header | 面板头内容 | string | 无 |
2018-02-02 08:34:27 +00:00
| key | 对应 activeKey | string | 无 |