Err when input Korean in vue

쏘리초이·2020년 3월 7일
0

vue에서 한국어를 입력할때 오류가 발생하는데,
한국어를 한글자씩 입력하면서 띄어쓰기를 할 경우 띄어쓰기가 제대로 먹지 않는 오류
가 발생하게 된다.
이것은 vue에서 업데이트 되지 않은 오류이므로, v-model을 쓰는 대신에 input event를 사용하는것을 권고한다.

For languages that require an IME (Chinese, Japanese, Korean, etc.), you’ll notice that v-model doesn’t get updated during IME composition. If you want to cater to these updates as well, use the input event instead.

profile
Hello Universe!

0개의 댓글