Replies: 1 comment
-
As far as I know, there is no distinction between the events on the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
On a checkbox I am using
<input type="checkbox" v-model="bob" @change="checkBob()">
Within checkBob() this.bob is false even though the checkbox is checked.
I tried the following
<input type="checkbox" v-model="bob" @change="$nextTick(checkBob)">
But I get the same results.
However, within checkBob() if I add a setTimeout() for 0 delay then bob is true.
Not a big deal, but I would like to know if I am doing it the right way.
How do you properly use nextTick when using the CDN method with importing it?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions