2018-02-01 18:18:05 +08:00
|
|
|
## API
|
|
|
|
|
|
|
|
### Collapse
|
|
|
|
|
|
|
|
| Property | Description | Type | Default |
|
2019-09-28 20:45:07 +08:00
|
|
|
| --- | --- | --- | --- |
|
2019-03-15 11:20:37 +08:00
|
|
|
| activeKey | Key of the active panel | string\[]\|string | No default value. In `accordion` mode, it's the key of the first panel. |
|
2018-02-02 16:34:27 +08:00
|
|
|
| defaultActiveKey | Key of the initial active panel | string | - |
|
2019-03-15 11:20:37 +08:00
|
|
|
| bordered | Toggles rendering of the border around the collapse block | boolean | `true` |
|
|
|
|
| accordion | If `true`, `Collapse` renders as `Accordion` | boolean | `false` |
|
|
|
|
| expandIcon | allow to customize collapse icon | Function(props):VNode \| slot="expandIcon" slot-scope="props"\|v-slot:expandIcon="props" |
|
2018-09-05 21:28:54 +08:00
|
|
|
| destroyInactivePanel | Destroy Inactive Panel | boolean | `false` |
|
2018-02-06 16:53:30 +08:00
|
|
|
|
|
|
|
### events
|
2019-09-28 20:45:07 +08:00
|
|
|
|
|
|
|
| Events Name | Description | Arguments |
|
|
|
|
| ----------- | ------------------------------------------------------- | ------------- |
|
|
|
|
| change | Callback function executed when active panel is changed | function(key) |
|
2018-02-01 18:18:05 +08:00
|
|
|
|
|
|
|
### Collapse.Panel
|
|
|
|
|
|
|
|
| Property | Description | Type | Default |
|
2019-09-28 20:45:07 +08:00
|
|
|
| --- | --- | --- | --- |
|
2018-02-01 18:18:05 +08:00
|
|
|
| disabled | If `true`, panel cannot be opened or closed | boolean | `false` |
|
2018-09-05 21:28:54 +08:00
|
|
|
| forceRender | Forced render of content on panel, instead of lazy rending after clicking on header | boolean | `false` |
|
2018-02-01 18:18:05 +08:00
|
|
|
| header | Title of the panel | string | - |
|
2018-02-02 16:34:27 +08:00
|
|
|
| key | Unique key identifying the panel from among its siblings | string | - |
|
2018-02-01 18:18:05 +08:00
|
|
|
| showArrow | If `false`, panel will not show arrow icon | boolean | `true` |
|
2019-03-15 11:20:37 +08:00
|
|
|
|
|
|
|
## FAQ
|
|
|
|
|
|
|
|
### How to let the arrow to be on the right?
|
|
|
|
|
|
|
|
You can adjust style of the arrow:
|
|
|
|
|
|
|
|
```
|
|
|
|
.ant-collapse .ant-collapse-item .ant-collapse-header .anticon {
|
|
|
|
left: initial;
|
|
|
|
right: 16px;
|
|
|
|
}
|
|
|
|
```
|