Too many ViewChild? Try ViewChildren to query DOM elements

Loading

Reading Time: 3 minutes Introduction This post describes how to refactor component to use ViewChildren to query DOM elements. It is a common case when inline template has several elements of the same type and the component uses ViewChild to query them. When this pattern occurs, we can consider to render the elements using ngFor and applying ViewChildren to … Read more