0

I need to create reusable component for drop down control for which i will be passing different objects and will display properties based on the object i am sending. Is it feasible in angular?

Mysti
  • 105
  • 3
  • 10
  • Possible duplicate of [How to pass data between two components in Angular 2](https://stackoverflow.com/questions/39325503/how-to-pass-data-between-two-components-in-angular-2) – Pankaj Prakash May 24 '19 at 05:43
  • Nope. I need to create a common component to show drop down control. to populate value in this, i need to pass different object and need to get property values. So i am asking is there any way to reuse to common component to populate values in drop down from different objects... – Mysti May 24 '19 at 05:50

1 Answers1

0

Yes it feasible using @Input and @Output decorations in Angular 6.

Refer: https://angular.io/guide/component-interaction

AddWeb Solution Pvt Ltd
  • 21,025
  • 5
  • 26
  • 57