I'm working with a hybrid Angular application consisting of AngularJS and Angular 7. I'm trying to set 2-way binding between an AngularJS component to an Angular downgraded component.
When I change the bound property in AngularJS, the change reflects in the Angular component. When I change the property in the Angular component, I see the change inside the Angular component, but not in the AngularJS component.
Here's a working example: https://stackblitz.com/edit/angular-ng-upgrade-downgrade-9fzfz6
- click on AngularJS anchor
- Enter something in the top Input (the AngularJS component)
- See that it reflects in the lower input (the Angular component)
- Type in the lower input
- See that it doesn't reflect in the top input