Skip to content

Instantly share code, notes, and snippets.

@leandroh
Created February 26, 2016 13:57
Show Gist options
  • Select an option

  • Save leandroh/6bf106663d48ae0bf4ce to your computer and use it in GitHub Desktop.

Select an option

Save leandroh/6bf106663d48ae0bf4ce to your computer and use it in GitHub Desktop.
<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 }}</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment