I'm using p3x-angular-compiler
plugin and I have a reference variable in my html and I'm trying to get it in component.
HTML -
<div #scrollMe></div>
ts -
@ViewChild('scrollMe') private chatScrollContainer: ElementRef;
when i console this.chatScrollContainer
in ngOnInit
i get undefined.