Last active
May 15, 2017 19:52
-
-
Save squadwuschel/f0b673c10bf8ad87fbeb4ce64a867813 to your computer and use it in GitHub Desktop.
[(name)] two-way-databinding
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() name : string; | |
@Output() nameChange = new EventEmitter<string>(); | |
//Aufruf | |
<my-child [(name)]="firstname"></my-child> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment