angular-docs-cn/public/docs/_examples/architecture/ts/app/hero-list.component.1.html
Filipe Silva 216120daba chore: update to beta.17
closes #1213, 1205
2016-04-28 18:31:00 -07:00

13 lines
328 B
HTML

<!--#docregion binding -->
<div>{{hero.name}}</div>
<hero-detail [hero]="selectedHero"></hero-detail>
<div (click)="selectHero(hero)"></div>
<!--#enddocregion binding -->
<!--#docregion structural -->
<div *ngFor="let hero of heroes"></div>
<hero-detail *ngIf="selectedHero"></hero-detail>
<!--#enddocregion structural -->