I bound a checked, in the radio component but did not update it dynamically.
<td>
<input type="radio" :checked="picked">
<button @click="resets(index)"></button>
</td>
initial picked
{
picked:false
}
Code canceled by JS
resets:function(index){
this.picked=false;
}
I originally thought that the initial state checkbox was not selected, but after it was checked, picked would become true, and then unchecked by canceling and then changing to flase,radio. But it seems that picked has not changed. When the radio box is selected, it is not available to cancel