2016-03-16 18:01:33 +02:00
|
|
|
// #docplaster
|
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component, OnInit }
|
2016-04-27 11:28:22 -07:00
|
|
|
from '@angular/core';
|
2016-03-16 18:01:33 +02:00
|
|
|
// #enddocregion
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'hero-lifecycle',
|
|
|
|
template: `<h1>Hero: {{name}}</h1>`
|
|
|
|
})
|
|
|
|
// #docregion
|
|
|
|
export class HeroComponent
|
|
|
|
implements OnInit {
|
2016-06-08 01:06:25 +02:00
|
|
|
name: string;
|
2016-03-16 18:01:33 +02:00
|
|
|
ngOnInit() {
|
|
|
|
this.name = 'Windstorm';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// #enddocregion
|