[Vuejs]-Vue Vuetify. v-model for v-checkbox not taking the correct value when inside a v-for loop

1👍

Delete : before v-model

Plus
it would be cleaner to use

v-model="option.checked"

instead of v-model="options[index].checked"

then you do not need index in v-for

2👍

You don’t need : before v-model.

Leave a comment