Skip to content

Commit

Permalink
Autocomplete: fix change event bug (ElemeFE#19200)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz authored and zihe-xu committed Jun 27, 2020
1 parent 7074b11 commit 8bb9c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/autocomplete/src/autocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@
}
this.debouncedGetData(value);
},
handleChange(event) {
this.$emit('change', event.target.value);
handleChange(value) {
this.$emit('change', value);
},
handleFocus(event) {
this.activated = true;
Expand Down

0 comments on commit 8bb9c34

Please sign in to comment.