Working in Angular 6 I've successfully created a Angular Component Library and added a component that has a drop down control in it.
I've added the neccessary imports in app.module and got my library component to show up!!!
..using its selector
<my-custom-dropdown></my-custom-dropdown>
The problem I'm having is how do I get the value that is selected from the dropDown in the app.component?
Any help is greatly appreciated!!
Parent component template:
In your child component:
Child component template: