Commit 49d367e9 authored by 三咲智子's avatar 三咲智子 Committed by GitHub

Autocomplete: fix change event bug (#19200)

parent d578b018
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment