修复 autocomplete 组件 IE11 下使用搜狗输入法,无法输入中文的问题
pull/7501/head
rennai 2017-09-08 23:51:28 +08:00 committed by 杨奕
parent 0de6b447e5
commit 17c94d7410
1 changed files with 1 additions and 1 deletions

View File

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