mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
add types to all the buttons in the angular.io examples to encourage the best practice of always including a type per button (regardless to whether it is in a form or now) PR Close #44557
19 lines
532 B
HTML
19 lines
532 B
HTML
<h1>{{title}}</h1>
|
|
<h2>My Heroes</h2>
|
|
<ul class="heroes">
|
|
<li *ngFor="let hero of heroes">
|
|
<button [class.selected]="hero === selectedHero" type="button" (click)="onSelect(hero)">
|
|
<span class="badge">{{hero.id}}</span>
|
|
<span class="name">{{hero.name}}</span>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
<div *ngIf="selectedHero">
|
|
<h2>{{selectedHero.name}} details!</h2>
|
|
<div>id: {{selectedHero.id}}</div>
|
|
<div>
|
|
<label>
|
|
name: <input [(ngModel)]="selectedHero.name" placeholder="name"/>
|
|
</label>
|
|
</div>
|
|
</div>
|