Skip to content

Commit

Permalink
fix(MdAutocomplete): prevent show options twice (#1410)
Browse files Browse the repository at this point in the history
fix #1408
  • Loading branch information
VdustR authored and marcosmoura committed Jan 17, 2018
1 parent d026496 commit 6a719b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/MdAutocomplete/MdAutocomplete.vue
Expand Up @@ -192,6 +192,10 @@
}
},
async showOptions () {
if (this.showMenu) {
return false
}
this.showMenu = true
await this.$nextTick()
this.triggerPopover = true
Expand Down

0 comments on commit 6a719b5

Please sign in to comment.