Skip to main content

Posts

Showing posts with the label Angular

Communicating from parent to child component in Angular

How this internal communication happens.  If we use @Input() decorator on any property it means the value of this property will be set by the parent component. @Input() title=' ';