I am creating a list of check boxes via a result set. I can see the correct values but I am not able to set the value correctly
<ul>
<li v-for="role in roles">
<input type="checkbox" :value="role.id" v-model="form.roleIds" > {{role.name}}
</li>
</ul>
When I click on one of the check boxes, I see all of them clicked.
That's what I see in console:


form.roleIds?form: { file: null, name: null, description: null, url: null, position: null, partnerId: null, roleIds: null, },that's the next step, you can see the html generated, there is no value being set @Vucko