Autocomplete: fix change event bug (#19200)

pull/19414/head
三咲智子 2020-04-23 16:49:06 +08:00 committed by GitHub
parent d578b018b9
commit 49d367e993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;