# Collapse ### Install ```js import { createApp } from 'vue'; import { Collapse, CollapseItem } from 'vant'; const app = createApp(); app.use(Collapse); app.use(CollapseItem); ``` ## Usage ### Basic Usage Use `v-model` to control the name of active panels. ```html Content Content Content ``` ```js export default { data() { return { activeNames: ['1'], }; }, }; ``` ### Accordion In accordion mode, only one panel can be expanded at the same time. ```html Content Content Content ``` ```js export default { data() { return { activeName: '1', }; }, }; ``` ### Custom title ```html Content Content ``` ```js export default { data() { return { activeNames: ['1'], }; }, }; ``` ## 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](https://vuejs.org/v2/api/#ref) to get CollapseItem instance and call instance methods. | Name | Description | Attribute | Return value | | --- | --- | --- | --- | | toggle `v2.10.9` | Toggle expanded status | _expanded: boolean_ | - |