UNPKG
ipsos-components
Version:
latest (5.0.0-rc.3)
5.0.0-rc.3
Material Design components for Angular
github.com/angular/material2
ipsos-components
/
src
/
material-examples
/
select-multiple
/
select-multiple-example.html
6 lines
(5 loc)
•
223 B
HTML
View Raw
1
2
3
4
5
6
<
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
>