Changing Indeterminate Firing Order on a checkbox or toggle
-
I have a checkbox that begins with a null value for my model.
It starts as maybe.
When first clicked that maybe changes to no.
How can I change the order so when I first click yes is selected?
-
You need to control the value yourself, instead of using
v-model
.https://codepen.io/smolinari/pen/wvaobgv?editors=1010
Scott