0๐
โ
I changed the v-icon
to i
tag as follow and it works for me:
SetContinueInError(myChip, e) {
var target = e.target || e.srcElement;
target.style.color = "yellow"
myChip.continueInError = myChip.continueInError == true ? false : true;
},
<i class="material-icons" style="color:gray" @click="SetContinueInError(chip,$event)">error_outline</i>
Source:stackexchange.com