blob: d945ae7b3622a07b76abd376f44283e0ae4008d6 [file] [log] [blame]
<table>
<tr>
<th *ngFor="let col of _config.columns">{{col.label}}</th>
</tr>
<tr *ngFor="let item of _data">
<td *ngFor="let col of _config.columns">
{{item[col.prop]}}
</td>
</tr>
</table>