|
@@ -445,7 +445,7 @@
|
|
|
const text = event.target.value;
|
|
|
if (event.type === 'compositionend') {
|
|
|
this.isOnComposition = false;
|
|
|
- this.handleQueryChange(text);
|
|
|
+ this.$nextTick(_ => this.handleQueryChange(text));
|
|
|
} else {
|
|
|
const lastCharacter = text[text.length - 1] || '';
|
|
|
this.isOnComposition = !isKorean(lastCharacter);
|