更新了素材,目前有抛出此错误
Error at /Users/asaylor/Desktop/RevenueIQ/website/aot/node_modules/@angular/material/typings/index.ngfactory.ts:4236:30:
Property 'disabled' does not exist on type 'MdCheckbox'
也为其他材料组件获取此信息。我没有看到有关更改组件禁用方式的文档。现在有什么正确的方法?
答案 0 :(得分:0)
disabled
是有效的属性
<md-checkbox class="example-margin" [disabled]="disabled" [color]="primary">
Disabled
</md-checkbox>
<button (click)="disabled = ! disabled"> Toggle disable</button>
<强> LIVE DEMO 强>