You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to this issue with Vue, on some mobile browsers the v-model binding doesn't update until the user types a space.
The fix is very easy, replace v-model="val" with :value="val" @input="val = $event.target.value" in TextareaAutosize.vue. (Yes, this should be exactly what v-model does, but for whatever reason, due to the referenced issue above, it doesn't.)
The text was updated successfully, but these errors were encountered:
Due to this issue with Vue, on some mobile browsers the
v-model
binding doesn't update until the user types a space.The fix is very easy, replace
v-model="val"
with:value="val" @input="val = $event.target.value"
in TextareaAutosize.vue. (Yes, this should be exactly whatv-model
does, but for whatever reason, due to the referenced issue above, it doesn't.)The text was updated successfully, but these errors were encountered: