Browse Source

fix #5813

修复 autocomplete 组件 IE11 下使用搜狗输入法,无法输入中文的问题
rennai 8 years ago
parent
commit
17c94d7410
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/autocomplete/src/autocomplete.vue

+ 1 - 1
packages/autocomplete/src/autocomplete.vue

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