diff --git a/fire-select.js b/fire-select.js index d9bca72..c1d5583 100644 --- a/fire-select.js +++ b/fire-select.js @@ -143,7 +143,11 @@ Vue.component('fire-select', { this.singleDeselect(); item.selected = true; - if (! this.isPopulating) this.$dispatch('fsItemSelected', Vue.util.extend({}, item)); + if (! this.isPopulating) { + setTimeout(function() { + this.$dispatch('fsItemSelected', Vue.util.extend({}, item)); + }.bind(this), 400); + } if (this.multiple) { this.skipClose = true;