I have an object that gets entered into a component
{{edit-general item=item}}
Inside this component, you can edit the values of an array.
{{#each value in item.values}}
<div class="input-field col s6 l6">
{{input type='text' value=value}}
</div>
{{/each}}
However, this value does not bind. The item gets changed inside the component, but this change does not affect the model.
How would I make this work the way I want it to?
Aucun commentaire:
Enregistrer un commentaire