Angular v17.2 Updates - viewChild()
ViewChild is a way to get a reference on an HTML within the current component’s template.
For instance, if we need our Typescript to access the instance of a given child component, We can use ViewChild like this:
export class App {
@ViewChild('list...
nhannguyen.hashnode.dev1 min read