我正在使用 mat-icon 作为按钮,我想禁用其中一些:
<button mat-button [disabled]="disabledCondition()">
<mat-icon [routerLink]="['./settings']">
settings
</mat-icon>
</button>
我的问题是设置了 disabled 属性,还设置了样式,但是如果我单击 mat-icon routerLink 工作。
为什么不禁用?
我正在使用 mat-icon 作为按钮,我想禁用其中一些:
<button mat-button [disabled]="disabledCondition()">
<mat-icon [routerLink]="['./settings']">
settings
</mat-icon>
</button>
我的问题是设置了 disabled 属性,还设置了样式,但是如果我单击 mat-icon routerLink 工作。
为什么不禁用?