0👍
This one should already work, if you receive your data properly, it may update itself due to reactivity. Maybe try v-model="!!items[key].complete"
just to be sure that your value is coerced to a Boolean.
- [Vuejs]-Vuetify breakpoint when printing from mobile
- [Vuejs]-How to get item by Id using Vue 3 Composition API using Axios
0👍
You are already inside the loop
v-model="value.complete"
Same goes for all other bindings.
And your data should not be accessed with this
in your template
v-for="(value,key,index) in items"
Source:stackexchange.com