Search code examples
angularcomponentssend

Angular / send data to component while calling it from template


I have component Main. Inside "Main" component I insert "SideBar" component.

<app-sidebar></app-sidebar>

Is it possible somehow to send data to that sidebar from Main while calling it ?

<app-sidebar>
maybe put data here ? 
</app-sidebar>

Solution

  • Yes you can do that using @Input(). This link should be helpful Component Interactions