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-reset
/
select-reset-example.html
7 lines
(6 loc)
•
210 B
HTML
View Raw
1
2
3
4
5
6
7
<
mat-form-field
>
<
mat-select
placeholder
=
"State"
>
<
mat-option
>
None
</
mat-option
>
<
mat-option
*
ngFor
=
"let state of states"
[
value
]=
"state"
>
{{state}}
</
mat-option
>
</
mat-select
>
</
mat-form-field
>