Cart-Seite aus Tutorial implementiert
[examples/angular-tutorial] / src / app / cart / cart.component.html
1 <h3>Cart</h3>
2
3 <div class="cart-item" *ngFor="let item of items">
4   <span>{{ item.name }}</span>
5   <span>{{ item.price | currency }}</span>
6 </div>