Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created April 6, 2020 16:09
Show Gist options
  • Save CoreProgramm/476389c4168f8a314c9573fdb6451431 to your computer and use it in GitHub Desktop.
Save CoreProgramm/476389c4168f8a314c9573fdb6451431 to your computer and use it in GitHub Desktop.
Two way data binding in Angular
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
Name : <input [(ngModel)]='name'>
<br>
You entered : {{name}}
`
})
export class AppComponent {
name = 'John';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment