# DropdownMenu ### Install ```js import { createApp } from 'vue'; import { DropdownMenu, DropdownItem } from 'vant'; const app = createApp(); app.use(DropdownMenu); app.use(DropdownItem); ``` ## Usage ### Basic Usage ```html ``` ```js export default { data() { return { value1: 0, value2: 'a', option1: [ { text: 'Option1', value: 0 }, { text: 'Option2', value: 1 }, { text: 'Option3', value: 2 }, ], option2: [ { text: 'Option A', value: 'a' }, { text: 'Option B', value: 'b' }, { text: 'Option C', value: 'c' }, ], }; }, }; ``` ### Custom Content ```html
Confirm
``` ```js export default { data() { return { value: 0, switch1: false, switch2: false, option: [ { text: 'Option1', value: 0 }, { text: 'Option2', value: 1 }, { text: 'Option3', value: 2 }, ], }; }, methods: { onConfirm() { this.$refs.item.toggle(); }, }, }; ``` ### Custom Active Color Use `active-color` prop to custom active color of the title and options. ```html ``` ### Expand Direction ```html ``` ### Disabled ```html ``` ## API ### DropdownMenu Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | active-color | Active color of title and option | _string_ | `#ee0a24` | | direction | Expand direction, can be set to `up` | _string_ | `down` | | z-index | z-index of menu item | _number \| string_ | `10` | | duration | Transition duration, unit second | _number \| string_ | `0.2` | | overlay | Whether to show overlay | _boolean_ | `true` | | close-on-click-overlay | Whether to close when click overlay | _boolean_ | `true` | | close-on-click-outside | Whether to close when click outside | _boolean_ | `true` | ### DropdownItem Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | value | Value of current option,can use `v-model` | _number \| string_ | - | | title | Item title | _string_ | Text of selected option | | options | Options | _Option[]_ | `[]` | | disabled | Whether to disable dropdown item | _boolean_ | `false` | | lazy-render `v2.8.5` | Whether to lazy render util opened | _boolean_ | `true` | | title-class | Title class | _string_ | - | | teleport | Return the mount node for menu | _string \| Element_ | - | ### DropdownItem Events | Event | Description | Arguments | | ------ | ----------------------------------------- | --------- | | change | Triggered select option and value changed | value | | open | Triggered when open menu | - | | close | Triggered when close menu | - | | opened | Triggered when menu opened | - | | closed | Triggered when menu closed | - | ### DropdownItem Slots | Name | Description | | ------- | ------------ | | default | Content | | title | Custom title | ### DropdownItem Methods Use [ref](https://vuejs.org/v2/api/#ref) to get DropdownItem instance and call instance methods | Name | Description | Attribute | Return value | | ------ | -------------- | ------------- | ------------ | | toggle | Toggle display | show: boolean | - | ### Data Structure of Option | Key | Description | Type | | ----- | ----------- | ------------------ | | text | Text | _string_ | | value | Value | _number \| string_ | | icon | Left icon | _string_ |