修复 autocomplete 组件 IE11 下使用搜狗输入法,无法输入中文的问题
@@ -115,7 +115,7 @@
handleComposition(event) {
if (event.type === 'compositionend') {
this.isOnComposition = false;
- this.handleChange(this.value);
+ this.handleChange(event.target.value);
} else {
this.isOnComposition = true;
}