Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autowidth issue after using IME #25

Closed
houjiazong opened this issue Jun 4, 2020 · 6 comments
Closed

Autowidth issue after using IME #25

houjiazong opened this issue Jun 4, 2020 · 6 comments
Labels

Comments

@houjiazong
Copy link

houjiazong commented Jun 4, 2020

Bad👎: https://syropian.github.io/vue-input-autowidth/

Lark20200604-143358

Good👍: https://codepen.io/lyuanqing/pen/xYpmKj

Lark20200604-143236

Good👍: https://jedwatson.github.io/react-input-autosize/

Lark20200604-143847

@houjiazong houjiazong changed the title Width issue after using IME Autowidth issue after using IME Jun 4, 2020
@syropian
Copy link
Owner

syropian commented Jun 4, 2020

Could you explain how to reproduce the issue a little better? Some sample text would be helpful.

@houjiazong
Copy link
Author

houjiazong commented Jun 5, 2020

@syropian
OS: macOS Catalina 10.15.4
Browser: Chrome latest version (83.0.4103.97)
After using Chinese input method, the automatic width will be invalid

@syropian
Copy link
Owner

syropian commented Jun 8, 2020

@houjiazong I'm not familiar with how to use Chinese input to reproduce the issue. Is there any steps I can easily follow to reproduce it?

@houjiazong
Copy link
Author

@syropian
If you are using mac, you can refer here https://chinese.yabla.com/type-chinese-characters.php?platform=mac Add Chinese input method, and then input, you can reproduce

@syropian
Copy link
Owner

syropian commented Jun 9, 2020

Great, thank you! I will try and get this fixed up soon.

@syropian syropian added the bug label Jun 9, 2020
@syropian
Copy link
Owner

@houjiazong After further investigation, it looks like the component is acting as intended.

Have a look at https://vuejs.org/v2/guide/forms.html.

From that article:

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.

So in short, don't use v-model with this directive if you require an IME, just use an input event.

Example:

<input @input="value = $event.target.value"/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants