[Vuejs]-Can't get a reset button to clear out a checkbox

2👍

You are directly setting the array length to be zero, which cannot be detected by Vue, as explained here: https://v2.vuejs.org/v2/guide/list.html#Caveats

Some more info: https://v2.vuejs.org/v2/guide/reactivity.html#Change-Detection-Caveats

To overcome this, you may instead set the value of this.selected as follows:

reset: function() {
  this.selected = [];
}
👤Mani

Leave a comment