BosNaufal / vue2-autocomplete

Vue 2 Component to make Autocomplete element.
MIT License
233 stars 89 forks source link

Fix forbid Chinese input issue #64

Open elvis460 opened 6 years ago

elvis460 commented 6 years ago

line 686 in file dist/vue2-autocomplete.js will forbit the Chinese input.

      if ($event.target.composing) { return; }

I comment this line out to make Chinese input successfully. And have not found side effect without this line. If without this line won't cause error, merge this PR please.