Angular Two-Way Data Binding and Watching for Changes in Parent Component
问题 It seems there is no way to watch changes in the parent component when using two-way data binding. I have a custom input component for collecting a tag list. Two-way data binding is setup and working between this component and its parent. // the parent component is just a form // here is how I'm adding the child component <input-tags formControlName="skillField" [(tags)]='skillTags' (ngModelChange)="skillTagUpdate($event)"></input-tags> In the parent component how do you watch the bound