I have a quiz made in Vue, which shows questions one at a time based on the index of a questions array. Example html for an individual question:
<h3>Is this a question?</h3>
<label><input type="radio" name="option" value="option">Yes</label>
<label><input type="radio" name="option" value="option">Maybe</label>
<label><input type="radio" name="option" value="option">No</label>
<button type="button" class="btn btn-default">Next question</button>
What I want to achive is to disable the Next Question button when the user has not clicked any of the radio buttons (for this specific indexed question). I got it working using a v-model but when I clicked the button, it didn't work for the next question within the array that popped up. Anyone that can help me out?