[Vuejs]-My f7/vue radio button is not working as expected

0👍

In order for radio inputs to work, plain HTML requires every input to have the same “name” attribute. If you are using VueJS, Vue requires every input to have the same “v-model” attribute. That is what is missing here.

Leave a comment