| alignment | - | string, Alignments |
Set aligment of dropdown menu. |
| autoClose | true | boolean, 'inside', 'outside' |
Configure the auto close behavior of the dropdown: - true - the dropdown will be closed by clicking outside or inside the dropdown menu. - false - the dropdown will be closed by clicking the toggle button and manually calling hide or toggle method. (Also will not be closed by pressing esc key) - 'inside' - the dropdown will be closed (only) by clicking inside the dropdown menu. - 'outside' - the dropdown will be closed (only) by clicking outside the dropdown menu. |
| container5.0.0+ | 'body' | HTMLElement, (() => HTMLElement), string |
Appends the vue dropdown menu to a specific element. You can pass an HTML element or function that returns a single element. By default document.body. |
| dark | - | boolean |
Sets a darker color scheme to match a dark navbar. |
| direction | - | string |
Sets a specified direction and location of the dropdown menu. |
| disabled | - | boolean |
Toggle the disabled state for the component. |
| offset4.9.0+ | [0, 2] | array |
Offset of the dropdown menu relative to its target. |
| placement | 'bottom-start' | Placement |
Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. |
| popper | true | boolean |
If you want to disable dynamic positioning set this property to true. |
| popperConfig5.10.0+ | undefined | Partial<Options>, ((defaultPopperConfig: Partial<Options>) => Partial<Options>) |
A Popper.js configuration object, or a function that receives the default configuration and returns a modified one, used to customize the positioning of the dropdown menu. |
| reference5.7.0+ | 'toggle' | 'parent', 'toggle', HTMLElement, Ref<HTMLElement, null> |
Sets the reference element for positioning the Vue Dropdown Menu. - toggle - The Vue Dropdown Toggle button (default). - parent - The Vue Dropdown wrapper element. - HTMLElement - A custom HTML element. - Ref - A custom reference element. |
| teleport5.0.0+ | false | boolean |
Generates dropdown menu using Teleport. |
| trigger | 'click' | Triggers |
Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. |
| variant | 'dropdown' | string |
Set the dropdown variant to an btn-group, dropdown, input-group, and nav-item. |
| visible | - | boolean |
Toggle the visibility of dropdown menu component. |