diff --git a/src/components/select/select.vue b/src/components/select/select.vue index f84ab94..784f4e0 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -591,12 +591,15 @@ } }, query (val) { + this.$emit('on-query-change', val); + if (findComponentDownward(this, 'OptionGroup')) { this.broadcast('OptionGroup', 'on-query-change', val); this.broadcast('iOption', 'on-query-change', val); } else { this.broadcast('iOption', 'on-query-change', val); } + let is_hidden = true; this.$nextTick(() => { -- libgit2 0.21.4