Commit 17c94d74 authored by rennai's avatar rennai Committed by 杨奕

fix #5813

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