Angularのmat-tableにボタンを配置する方法
方法1: ボタンをセル内に配置する 最も基本的な方法は、mat-tableのセル内にボタンを配置することです。以下はその例です。<ng-container matColumnDef="actions"> <th mat-header-cell *matHeaderCellDef> Actions </th> <td mat-cell *matCellDef="let element"> <button mat-icon-button (click)="doSomething(element)"> <m>>More