-
-
Notifications
You must be signed in to change notification settings - Fork 158
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Clear and concise description of the problem
But looking at the component, only click
is emitted, and it works as if it was actually the split-click
.
bootstrap-vue-next/packages/bootstrap-vue-next/src/components/BDropdown/BDropdown.vue
Lines 150 to 154 in 3ee3fd8
const emit = defineEmits< | |
{ | |
click: [event: MouseEvent] | |
} & showHideEmits | |
>() |
I would need the caret click (in non-split mode) to be emitted with event prop in order to stop its propagation.
Suggested solution
Implement the events (click
, split-click
) mentioned in the docs.
Alternative
Fix documentation to match current implementation and then add additional event emit or update click
event to be always emitted in non-split mode.
Additional context
I'm up to sending a PR when a single solution is accepted.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request