// component
@ViewChild('inputName', {static: false})
obj: ElementRef;

ngOnInit(){
  this.skipLink()
}

skipLink() {
 this.obj.nativeElement.focus()
}