Created
May 15, 2017 19:51
-
-
Save squadwuschel/dc7dbce112fc0852f789a7d3c957042a to your computer and use it in GitHub Desktop.
two-way-databinding Angular
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Dekorator Definition | |
@Input() age : string; | |
@Output() ageChanged = new EventEmitter<string>(); | |
//Aufruf | |
<my-child [age]="alter" (ageChanged)="alter = $event"></my-child> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment