import { Directive, ElementRef, OnInit, } from '@angular/core'; import * as scrollIntoView from 'scroll-into-view'; @Directive({ selector: '[scroll-into-view-on-init]', }) export class ScrollIntoViewOnInitDirective implements OnInit { constructor( private _elementRef: ElementRef, ) {} public ngOnInit() { scrollIntoView(this._elementRef.nativeElement); } }