[Vuejs]-How to remove value from an element according to a condition in VueJS

0👍

you can use watch property to check and do actions :

watch: {
switchopera: function(value){
  // do action
}
}

Leave a comment