0👍
✅
It doesn’t work because you have to bind id
and value
.This should work as suposed:
<div v-for="item in instituteModel" v-if="instituteModel.length > 0">
<input type="checkbox" :id="item.id" :value="item.inst_name" v-model="checkeditems"/>
</div>
Source:stackexchange.com