// component
@ViewChild('inputName', {static: false})
obj: ElementRef;
ngOnInit(){
this.skipLink()
}
skipLink() {
this.obj.nativeElement.focus()
}
// component
@ViewChild('inputName', {static: false})
obj: ElementRef;
ngOnInit(){
this.skipLink()
}
skipLink() {
this.obj.nativeElement.focus()
}