JSFiddle - React, Tailwind, and code Playground

HTML

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