html
<p #greet>dome3 works!</p>
ts
import { ElementRef, ViewChild } from '@angular/core';
@ViewChild('greet')
greetDiv!: ElementRef;
html
<app-dome2 #dome1></app-dome2>
ts
import { ViewChild } from '@angular/core';
import { Dome2Component } from '../dome2/dome2.component'
@ViewChild(Dome2Component) dome2!: Dome2Component;