getComponent
function
stable
Retrieves the component instance associated with a given DOM element.
getComponent
T | nullRetrieves the component instance associated with a given DOM element.
@paramelement
ElementDOM element from which the component should be retrieved.
@returns
T | nullUsage Notes
Given the following DOM structure:
<app-root>  <div>    <child-comp></child-comp>  </div></app-root>Calling getComponent on <child-comp> will return the instance of ChildComponent
associated with this DOM element.
Calling the function on <app-root> will return the MyApp instance.
Jump to details