[Vuejs]-CheckBox display In HTML with vue configuration

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>

http://jsbin.com/wawucopoya/edit?html,js,output

Leave a comment