I came up with a situation where I need to execute a method whenever a checkbox is selected or deselected. After searching on the Checkbox control API on vuetifyjs.com, it seems there's no event associated with the checkbox. How can I achieve this ?
Here is simple example with "change" event
https://jsfiddle.net/2vtk5nLp/2/
@zeljic is correct, you can use @change.native for checkbox/radio/switches.
Thank you so much for the reply. Its working now............
Most helpful comment
@zeljic is correct, you can use @change.native for checkbox/radio/switches.