docs: update product-alerts.component.1.ts (#29917)
Make the example match the generated output seen in StackBlitz as shown https://next.angular.io/getting-started#input step 2 "Open product-alerts.component.ts." PR Close #29917
This commit is contained in:
parent
4bde40f7c2
commit
c0ec1d63ff
|
@ -1,6 +1,6 @@
|
|||
// #docplaster
|
||||
// #docregion as-generated, imports
|
||||
import { Component } from '@angular/core';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
// #enddocregion as-generated
|
||||
import { Input } from '@angular/core';
|
||||
// #enddocregion imports
|
||||
|
@ -12,8 +12,13 @@ import { Input } from '@angular/core';
|
|||
styleUrls: ['./product-alerts.component.css']
|
||||
})
|
||||
// #docregion input-decorator
|
||||
export class ProductAlertsComponent {
|
||||
export class ProductAlertsComponent implements OnInit {
|
||||
// #enddocregion as-generated
|
||||
@Input() product;
|
||||
// #docregion as-generated
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue