Cart-Seite aus Tutorial implementiert
authorKai Moritz <kai@juplo.de>
Sat, 21 Dec 2019 12:34:32 +0000 (13:34 +0100)
committerKai Moritz <kai@juplo.de>
Sat, 21 Dec 2019 12:34:32 +0000 (13:34 +0100)
src/app/cart/cart.component.html
src/app/cart/cart.component.ts

index 6bdabc8..222ee9d 100644 (file)
@@ -1 +1,6 @@
-<p>cart works!</p>
+<h3>Cart</h3>
+
+<div class="cart-item" *ngFor="let item of items">
+  <span>{{ item.name }}</span>
+  <span>{{ item.price | currency }}</span>
+</div>
index c9276d4..500bd05 100644 (file)
@@ -1,4 +1,5 @@
 import { Component, OnInit } from '@angular/core';
+import { CartService } from '../cart.service';
 
 @Component({
   selector: 'app-cart',
@@ -7,9 +8,12 @@ import { Component, OnInit } from '@angular/core';
 })
 export class CartComponent implements OnInit {
 
-  constructor() { }
+  items;
+
+  constructor(private cartService: CartService) { }
 
   ngOnInit() {
+    this.items = this.cartService.getItems();
   }
 
 }