I'm having trouble binding selected rows to an array. I've attempted to bind data from a v-for loop to the value of my input, using v-bind:value="row.id" or value={{row.id}}, but neither seem to be working.
<tbody>
<tr v-for="row in get_rows()">
<td>
<input type="checkbox" v-bind:value="row.id" v-model="selectedRows">
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
Can anyone help me figure out what I am doing wrong?