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
/
dialog-overview
/
dialog-overview-example.html
14 lines
(13 loc)
•
305 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<
ol
>
<
li
>
<
mat-form-field
>
<
input
matInput
[(
ngModel
)]=
"name"
placeholder
=
"What's your name?"
>
</
mat-form-field
>
</
li
>
<
li
>
<
button
mat-raised-button
(
click
)=
"openDialog()"
>
Pick one
</
button
>
</
li
>
<
li
*
ngIf
=
"animal"
>
You chose:
<
i
>
{{animal}}
</
i
>
</
li
>
</
ol
>