[Vuejs]-Arguments on checkbox on NativeScript Vue

0👍

First, change the code:

@tap="onTap($event)"

to

@tap="onTap"

Secondly, if you try logging the event, you’ll get an explosion 🙂
So, go on with your code, do whatever you want, but don’t log the event.

Leave a comment