/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.html
11 строк
451 B
mmalerba
docs(material/checkbox): add example of using mat-checkbox with reactive forms (#22796)
26 май 2021, 05:45
Не верифицирован
26 май 2021, 05:45
47b7357
Код
Авторство
О чём код?
<section class="example-section" [formGroup]="toppings"> <h4>Select your toppings:</h4> <p><mat-checkbox formControlName="pepperoni">Pepperoni</mat-checkbox></p> <p><mat-checkbox formControlName="extracheese">Extra Cheese</mat-checkbox></p> <p><mat-checkbox formControlName="mushroom">Mushroom</mat-checkbox></p> </section> <section class="example-section" [formGroup]="toppings"> <h4>You chose:</h4> {{toppings.value | json}} </section>