Skip to content

Instantly share code, notes, and snippets.

@leandroh
Last active February 25, 2016 19:54
Show Gist options
  • Select an option

  • Save leandroh/94e841554f327cf90739 to your computer and use it in GitHub Desktop.

Select an option

Save leandroh/94e841554f327cf90739 to your computer and use it in GitHub Desktop.
Angular ng-repeat table exemplo
<table data-ng-controller="ProdutosCtrl as ctrl">
<tr>
<th>Produto</th>
<th>Valor</th>
</tr>
<tr data-ng-repeat="produto in ctrl.produtos">
<td>{{ produto.nome }}</td>
<td>{{ produto.valor | currency: 'R$ ' }}</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment