0๐
โ
You can use Event Modifiers in vue.js.
<input type="checkbox" v-on:click.stop />
or
<input type="checkbox" @click.stop />
0๐
<input type="checkbox" onClick={e => e.stopPropagation()}/>
Source:stackexchange.com