[Vuejs]-Vue Material Checkbox Checked

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.

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"

Leave a comment