We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25280ae commit 814e94cCopy full SHA for 814e94c
lib/mixins/dropdown.js
@@ -68,6 +68,7 @@ export default {
68
69
if (state) {
70
this.emitOnRoot('shown::dropdown', this);
71
+ this.$emit('shown');
72
/*
73
If this is a touch-enabled device we add extra
74
empty mouseover listeners to the body's immediate children;
@@ -82,6 +83,7 @@ export default {
82
83
}
84
} else {
85
this.emitOnRoot('hidden::dropdown', this);
86
+ this.$emit('hidden');
87
88
If this is a touch-enabled device we remove the extra
89
empty mouseover listeners we added for iOS support
0 commit comments