Use Base Component Type to Query Children in Angular
Sometimes we might require to use Base Component type to Query Children in a component. Let us consider a scenario where we have multiple components that extend the same base component type, and use them in a ListView. BaseItemViewComponent (Base component) @Component({ … }) export class BaseItemViewComponent { … } […]