mat
<mat-list>
<mat-list-item>item1 here</mat-list-item>
<mat-list-item>item2 here</mat-list-item>
<mat-list-item>item3 here</mat-list-item>
<a mat-list-item href="..." *ngFor="let link of links"> {{ link }} </a>
</mat-list>
<mat-action-list>
<button mat-list-item (click)="save()"> Save </button>
<button mat-list-item (click)="undo()"> Undo </button>
</mat-action-list>
<mat-selection-list #shoes>
<mat-list-option *ngFor="let shoe of typesOfShoes">
{{shoe}}
</mat-list-option>
</mat-selection-list>
<p>
Options selected: {{shoes.selectedOptions.selected.length}}
</p>
Reference
この問題について(mat), 我々は、より多くの情報をここで見つけました https://velog.io/@younghwan/matテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol