Introduction to Sharing Data between Components
Explore the concept of sharing data between components.
We'll cover the following...
Sharing data
Sharing data between components is a very common use case in web applications. Angular provides many approaches to communicating between parent and child components, such as the popular @Input
and @Output
decorator patterns. The @Input()
decorator allows a parent ...