Product-List aus Tutorial übernommen (direkt mit Erweiterungen)
[examples/angular-tutorial] / src / app / product-list / product-list.component.html
1 <h2>Products</h2>
2
3 <div *ngFor="let product of products, index as productId">
4
5   <h3>
6      <a [title]="product.name + ' details'" [routerLink]="['/products',productId]"> {{ product.name }} </a>
7   </h3>
8   <p *ngIf="product.description"> <em>Description: </em> {{ product.description }} </p>
9   <p> <strong>{{ product.price }} €</strong> </p>
10
11   <button (click)="share()">
12     Share
13   </button>
14 </div>