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
A checkbox input with v-model does not update the value when an "input" or "change" event was triggered externally, whereas this does work with a text input element.
Click the button titled "Uncheck the checkbox" and the button titled "Fill text".
What is Expected?
The value of foo should change to false and the value of bar should change to "foobar".
What is actually happening?
The value of foo stays false whereas the value of bar changes to "foobar". It appears that the v-model does not pick up the fired "input" or "change" event on a checkbox input element but it does on a text input element.