我正在尝试向Angular Data Table的表标题添加图标。我想念什么?
此外,我想使其可点击以显示模式。我应该添加什么?
<th mat-header-cell *matHeaderCellDef mat-sort-header> Action Name </th>
<mat-icon svgIcon="thumbs-up" aria-hidden="false" aria-label="Example thumbs up SVG icon"></mat-icon>
<td mat-cell *matCellDef="let action"> {{action.actionName}} </td>
</ng-container>````
答案 0 :(得分:1)
将图标组件放置在标题中:
<th mat-header-cell *matHeaderCellDef mat-sort-header>
<mat-icon svgIcon="thumbs-up" aria-hidden="false" aria-label="Example thumbs up SVG icon"></mat-icon>
Action Name
</th>
<td mat-cell *matCellDef="let action"> {{action.actionName}} </td>