Output-Beispiel für Product-Alerts
[examples/angular-tutorial] / src / app / product-alerts / product-alerts.component.ts
1 import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
2
3 @Component({
4   selector: 'app-product-alerts',
5   templateUrl: './product-alerts.component.html',
6   styleUrls: ['./product-alerts.component.css']
7 })
8 export class ProductAlertsComponent implements OnInit {
9
10   @Input() product;
11   @Output() notify = new EventEmitter();
12
13   constructor() { }
14
15   ngOnInit() {
16   }
17
18 }