JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="TestController">
    <div ng-repeat="item in list">
        <label>Input {{$index+1}}:</label>
        <input ng-model="item" type="text" ng-blur="editItem($index, item)"/>
    </div>
    {{list}}
</div>

JavaScript

function TestController($scope) {
    $scope.list = [ 'value 1', 'value 2', 'value 3' ];
    
    $scope.editItem = function(idx, eItem) {
        $scope.list[idx] = eItem;
    };
}