如何将材质图标添加到角度数据表标题

时间:2019-07-16 14:24:19

标签: javascript angular angular-material material-design

我正在尝试向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>````

1 个答案:

答案 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>