I want to put the value of every item into array selectedParks. The problem is, the value is always set to string "item", and not the value of the actual item (it's a Park Object).
Code:
<ul class="list-group no-bullets">
<li class="list-group-item" v-for="item in parks">
<label><input type="checkbox" value="item" v-model="selectedParks"/> {{item.name}}</label>
</li>
</ul>
<span>Checked: {{selectedParks}}</span>
I know that the actual item is bound correctly, because {{item.name}} shows the correct value.
Docs (multiple checkboxes bound to the same array): https://v2.vuejs.org/v2/guide/forms.html
Park Objectdata structure?