/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components-examples/material/list/list-single-selection/list-single-selection-example.html
9 строк
297 B
Ruslan Lekhman
docs(material/list): single selection example (#31990)
05 окт 2025, 08:39
Не верифицирован
05 окт 2025, 08:39
38ac513
Код
Авторство
О чём код?
<mat-selection-list #shoes [multiple]="false"> @for (shoe of typesOfShoes; track shoe) { <mat-list-option [value]="shoe">{{shoe}}</mat-list-option> } </mat-selection-list> <p> Option selected: {{shoes.selectedOptions.hasValue() ? shoes.selectedOptions.selected[0].value : 'None'}} </p>