Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created October 25, 2016 09:53
Show Gist options
  • Save NetanelBasal/830b03602328b7508b72c5911a841ded to your computer and use it in GitHub Desktop.
Save NetanelBasal/830b03602328b7508b72c5911a841ded to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { ViewChild } from "@angular/core/src/metadata/di";
@Component({
selector: 'app-root',
templateUrl: '<input type="text" #input>'
})
export class AppComponent {
@ViewChild("input") input;
ngAfterContentInit() {
this.input.nativeElement.focus();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment