[Vuejs]-How can you remove an !important CSS property?

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>

Leave a comment