JSFiddle - React, Tailwind, and code Playground

HTML

<table ng-controller='MeuController' ng-app>
    <tr>
        <th>Index</th>
        <th>Nome</th>
        <th>Idade</th>
    </tr>
	<tr ng-repeat='aluno in alunos'>
		<td>{{$index}}</td>
		<td>{{aluno.nome}}</td>
		<td>{{aluno.idade}}</td>
        <td>{{aluno.idade}}</td>
	</tr>
</table>

JavaScript

function MeuController( $scope ) { 
	$scope.alunos = [ 
				{ nome : 'Aluno 1', idade : '12' },
			     	{ nome : 'Aluno 2', idade : '14' }
                        { nome: 'aluno 3' , idade : '29' }
			];
}