Collapse
Install
Usage
Basic Usage
Use v-model to control the name of active panels.
Accordion
In accordion mode, only one panel can be expanded at the same time.
Custom title
API
Collapse Props
| Attribute |
Description |
Type |
Default |
| v-model |
Names of current active panels |
accordion mode: number | string non-accordion mode:(number | string)[] |
- |
| accordion |
Whether to be accordion mode |
boolean |
false |
| border |
Whether to show outer border |
boolean |
true |
Collapse Events
| Event |
Description |
Arguments |
| change |
Triggered when switch panel |
activeNames |
CollapseItem Props
| Attribute |
Description |
Type |
Default |
| name |
Name |
number | string |
index |
| icon |
Left Icon |
string |
- |
| size |
Title size,can be set to large |
string |
- |
| title |
Title |
number | string |
- |
| value |
Right text |
number | string |
- |
| label |
Description below the title |
string |
- |
| border |
Whether to show inner border |
boolean |
true |
| disabled |
Whether to disabled collapse |
boolean |
false |
| is-link |
Whether to show link icon |
boolean |
true |
| title-class |
Title className |
string |
- |
| value-class |
Value className |
string |
- |
| label-class |
Label className |
string |
- |
CollapseItem Slots
| Name |
Description |
| default |
Content |
| value |
Custom value |
| icon |
Custom icon |
| title |
Custom title |
| right-icon |
Custom right icon |
CollapseItem Methods
Use ref to get CollapseItem instance and call instance methods.
| Name |
Description |
Attribute |
Return value |
toggle v2.10.9 |
Toggle expanded status |
expanded: boolean |
- |