[Vuejs]-Uncheckeck a individual radio button from loop of radio buttons in vue.js

0👍

I managed to capture the id of the radio through the attribute with querySelector from a method

const confirmed = document.querySelector(`#rbConfirmed${this.radioId}`);
confirmed.checked = false;

Leave a comment