We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341a06c commit 24e63baCopy full SHA for 24e63ba
src/components/MdAutocomplete/MdAutocomplete.vue
@@ -202,20 +202,15 @@
202
}
203
204
this.showMenu = true
205
- this.$nextTick().then(() => {
+ this.$nextTick(() => {
206
this.triggerPopover = true
207
this.$emit('md-opened')
208
})
209
},
210
hideOptions () {
211
- const clearPopover = () => {
212
this.triggerPopover = false
213
this.$emit('md-closed')
214
- }
215
-
216
217
- this.showMenu = false
218
- this.$nextTick().then(clearPopover)
219
220
221
selectItem (item, $event) {
0 commit comments