mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
6 lines
226 B
HTML
6 lines
226 B
HTML
|
<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>
|