Autocomplete: fix a Chinese composition bug

pull/4724/head
Leopoldthecoder 2017-05-06 10:00:43 +08:00 committed by 杨奕
parent 68edc75da1
commit 50777f6779
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@
handleComposition(event) {
if (event.type === 'compositionend') {
this.isOnComposition = false;
this.handleChange(event.data);
this.handleChange(this.value);
} else {
this.isOnComposition = true;
}