My understanding is that I can pass data to child components using directive @Input(), and send data back to parent component using @Output() and with the appropriate emit. But I wasn't aware that changes data in the @Input() field would be sent to the parent. Is this correct?
I modified the component communication workbook to reproduce this https://input-params.stackblitz.io
Can you explain?
Thanks,