Angular mat-selection-list,如何使单个复选框选择类似于单选按钮?

前端之家收集整理的这篇文章主要介绍了Angular mat-selection-list,如何使单个复选框选择类似于单选按钮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从mat-selection-list中选择make single复选框.类似于单选按钮,它接受一组值中的一个值.
这与材料5-7一起使用:
@ViewChild(MatSelectionList) selectionList: MatSelectionList;

ngOnInit() {
    this.selectionList.selectedOptions = new SelectionModel<MatListOption>(false);
}
原文链接:https://www.f2er.com/angularjs/140362.html

猜你在找的Angularjs相关文章