fuse-angular/src/assets/angular-material-examples/select-multiple/select-multiple-example.html

6 lines
218 B
HTML
Raw Normal View History

<mat-form-field>
<mat-select placeholder="Toppings" [formControl]="toppings" multiple>
<mat-option *ngFor="let topping of toppingList" [value]="topping">{{topping}}</mat-option>
</mat-select>
</mat-form-field>