2016-10-13 17:59:00 +01:00
|
|
|
// #docplaster
|
2016-12-06 19:43:50 -08:00
|
|
|
// #docregion
|
2016-10-13 17:59:00 +01:00
|
|
|
// #docregion metadata
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2016-11-13 14:09:28 -08:00
|
|
|
// #docregion appexport, class
|
2016-10-13 17:59:00 +01:00
|
|
|
export class HeroComponent {
|
2016-11-03 01:37:55 -07:00
|
|
|
constructor() {
|
2016-10-13 17:59:00 +01:00
|
|
|
this.title = 'Hero Detail';
|
|
|
|
}
|
|
|
|
getName() {return 'Windstorm'; }
|
|
|
|
}
|
2016-11-13 14:09:28 -08:00
|
|
|
// #enddocregion appexport, class
|
2016-10-13 17:59:00 +01:00
|
|
|
|
|
|
|
HeroComponent.annotations = [
|
|
|
|
new Component({
|
|
|
|
selector: 'hero-view',
|
2016-11-03 01:37:55 -07:00
|
|
|
template: '<h1>{{title}}: {{getName()}}</h1>'
|
2016-10-13 17:59:00 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
// #enddocregion metadata
|