Version: \"angular2\": \"2.0.0-beta.6\"
I would like to implement a two way binding inside a parent/child component case.
On my child component, I\'m using t
You can use @Input & @Output to achive 2 way binding between parent and child as mentioned in previous answers.
Otherwise, there another solution, you can use a service that contains your variable, and you can access it with ngModel in the same time from different components (even if they are not parent-child)