Dropdown stable
Dropdown component is a wrapper which contains Popover component and Menu.
Example
<v-dropdown contain-focus :options="options">
<template v-slot:toggle>
<v-button appearance="primary">Open dropdown</v-button>
</template>
</v-dropdown>
1
2
3
4
5
2
3
4
5
Props
| Name | Type | Description | Default | Required |
|---|---|---|---|---|
| placement | String | Placement of popover | 'bottom' | false |
| options | Array | List of options | [] | false |
| containFocus | Boolean | Should focus stay inside popover or not | true | false |
| disabled | Boolean | Disabled state | false | false |
← Checkbox Group Menu →