I got this error after upgrading to Angular 2 Rc.5. This is my component template:
<md-input
[(ngModel)]="recipient"
name="recipient"
placeholder="Name"
class="col-sm-4"
(blur)="addRecipient(recipient)">
</md-input>
My app.module.ts imports the FormsModule
I also tried to declare private recipient;
in my component.
Am I missing something? Why do I get this error?
No value accessor for form control with name: 'recipient'