-3

An error appear when using two binding <input type="text" [(ngModel)] ="asd" >

TS2339: Property 'asd' does not exist on type 'Users Component'

Note :i add FormsModule in App. Module page.

So i don't know what the problem??

1 Answers1

0

This error means that in your component "User Component" you don't have declared variable called "asd"

Just do

export class UsersComponent implements OnInit {

 asd: string;

 constructor() {}

 ngOnInit(): void {
 }
}
godocmat
  • 173
  • 5