-2👍
Just add name attribute to inputs.
<input class="form-control" type="date" name="date" v-model="row.myDate">
or dynamical
<input class="form-control" type="date" :name="'date'+index" v-model="row.myDate">
Try this https://jsfiddle.net/jp1zw25a/ and check results in browser dev-tools
- [Vuejs]-Can't get error handing in vue.js 1.0 and Laravel 5.1 to work
- [Vuejs]-Shift marker by given specific user input
Source:stackexchange.com