angular-cn/public/docs/_examples/component-styles/ts/app/hero-details.component.ts
2016-04-06 10:02:23 -07:00

21 lines
490 B
TypeScript

import {Component, Input} from 'angular2/core';
import {Hero} from './hero';
import {HeroTeamComponent} from './hero-team.component';
// #docregion styleurls
@Component({
selector: 'hero-details',
template: `
<h2>{{hero.name}}</h2>
<hero-team [hero]=hero></hero-team>
<ng-content></ng-content>
`,
styleUrls: ['app/hero-details.component.css'],
directives: [HeroTeamComponent]
})
export class HeroDetailsComponent {
// #enddocregion styleurls
@Input() hero:Hero;
}