Check for basic typos in the control you're using.
I'm using signals, where item.selected
is a Signal<boolean>
and was getting the same error on the following code:
<mat-checkout [(ngModel)]="item.selected">{{ item.desc }}</mat-checkout>
Spot the problem?... I'd put mat-checkout
instead of mat-checkbox
. No compile errors.