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.
1 parent 04ec06d commit 57f35ceCopy full SHA for 57f35ce
src/components/dropdown/CDropdown.vue
@@ -8,7 +8,7 @@
8
<slot name="toggler">
9
<component
10
:is="togglerTag"
11
- v-on="{ click: splittedToggler ? splitButtonPress : toggle }"
+ v-on="{ click: splittedToggler ? splitButtonClick : toggle }"
12
:class="computedTogglerClasses"
13
v-bind="splittedToggler ? '' : togglerAttrs"
14
>
@@ -120,9 +120,9 @@ export default {
120
this.visible = false
121
},
122
123
- splitButtonPress () {
+ splitButtonClick () {
124
125
- this.$emit('splitButtonPress')
+ this.$emit('click')
126
127
128
toggle (e) {
0 commit comments