Angular - Component Interaction
Given this component code:
And usage:
What will be logged to the console?
@Component({ selector: 'child-comp', template: ` ` })
export class ChildComp {
@ContentChild('proj') projElement!: ElementRef;
ngAfterContentInit() {
console.log(this.projElement.nativeElement.textContent);
}
}And usage:
Hello World
What will be logged to the console?
