DEV Community

Discussion on: scrollIntoView is the best thing since sliced bread

Collapse
 
yashashgaurav profile image
~BlacKHawK~
@ViewChildren('slide') slides: QueryList<ElementRef>;

Didn't let me access the nativeElement of 'slides'

had to use:

@ViewChildren('slide', { read: ElementRef }) slides: QueryList<ElementRef>;