mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-12 19:41:38 +00:00
12 lines
474 B
HTML
12 lines
474 B
HTML
<mat-form-field>
|
|
<mat-select placeholder="Pokemon" [formControl]="pokemonControl">
|
|
<mat-option>-- None --</mat-option>
|
|
<mat-optgroup *ngFor="let group of pokemonGroups" [label]="group.name"
|
|
[disabled]="group.disabled">
|
|
<mat-option *ngFor="let pokemon of group.pokemon" [value]="pokemon.value">
|
|
{{ pokemon.viewValue }}
|
|
</mat-option>
|
|
</mat-optgroup>
|
|
</mat-select>
|
|
</mat-form-field>
|