[Vuejs]-Vue.js Set Radio Buttons Checked Only If Binded Input Type is Radio Button

2👍

If the problem is why it displays the answer, then that’s the expected behavior, because currentQuestion.answer is bind to the input by the v-model.
So if u don’t want the currentQuestion.answer to be shown just delete this line.

{{ currentQuestion.answer}}

Leave a comment