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-overview
/
select-overview-example.html
8 lines
(7 loc)
•
211 B
HTML
View Raw
1
2
3
4
5
6
7
8
<
mat-form-field
>
<
mat-select
placeholder
=
"Favorite food"
>
<
mat-option
*
ngFor
=
"let food of foods"
[
value
]=
"food.value"
>
{{ food.viewValue }}
</
mat-option
>
</
mat-select
>
</
mat-form-field
>