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??
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??
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 {
}
}