ViewChild vs ViewChildren
@ViewChild(HelloComponent) hello: HelloComponent; | |
@ViewChildren(HelloComponent) hellos: QueryList<HelloComponent>; | |
ngAfterViewInit() { | |
console.log(this.hello); | |
console.log(this.hellos); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment