We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0620d commit c7abe76Copy full SHA for c7abe76
components/vc-mentions/src/Mentions.jsx
@@ -115,6 +115,9 @@ const Mentions = {
115
const { measureText: prevMeasureText, measuring } = this.$data;
116
const { prefix = '', validateSearch } = this.$props;
117
const target = event.target;
118
+ if (target.composing) {
119
+ return;
120
+ }
121
const selectionStartText = getBeforeSelectionText(target);
122
const { location: measureIndex, prefix: measurePrefix } = getLastMeasureIndex(
123
selectionStartText,
0 commit comments