JSFiddle - React, Tailwind, and code Playground
by nicholas_r
HTML
<script>
function MyController($scope){
$scope.fields = {
test : ["aaa", "bbb", "ccc"]
}
};
</script>
<div ng-app ng-controller="MyController">
<ul>
<li ng-repeat="field in fields.test">
<input type="text" ng-model="field">
</li>
</ul>
<pre>{{fields}}</pre>
</div>