How do I update this input to work with Vue.js 2?
<input value="{{item.id}}" type="text" name="emails[{{$index}}]['id']" />
This is as far as I've got:
<input :value="item.id" type="text" class="form-control" name="emails[{{$index}}]['id']" />
I'm not sure how to update the name attribute.