July 2017
Intermediate to advanced
384 pages
8h 23m
English
Components can communicate with each other in a loosely coupled manner. There are various ways Angular's components can share data, including the following:
We will only describe the first three ways. A component can declare input and output properties. To pass the data from a parent to a child component, the parent binds the values to the input properties of the child. The child's input property should be decorated with @Input(). Let's create TodoChildComponent ...
Read now
Unlock full access