8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1198cd + 57f35ce commit 20cce64Copy full SHA for 20cce64
src/components/dropdown/CDropdown.vue
@@ -8,7 +8,7 @@
8
<slot name="toggler">
9
<component
10
:is="togglerTag"
11
- v-on="{ click: splittedToggler ? hide : toggle }"
+ v-on="{ click: splittedToggler ? splitButtonClick : toggle }"
12
:class="computedTogglerClasses"
13
v-bind="splittedToggler ? '' : togglerAttrs"
14
>
@@ -120,6 +120,11 @@ export default {
120
this.visible = false
121
},
122
123
+ splitButtonClick () {
124
+ this.visible = false
125
+ this.$emit('click')
126
+ },
127
+
128
toggle (e) {
129
e.preventDefault()
130
this.visible = !this.visible
0 commit comments