getOwningComponent
function
stable
Retrieves the component instance whose view contains the DOM element.
@paramelementOrDir
{} | ElementDOM element, component or directive instance for which to retrieve the root components.
@returns
T | nullComponent instance whose view owns the DOM element or null if the element is not part of a component view.
Description
Retrieves the component instance whose view contains the DOM element.
For example, if <child-comp> is used in the template of <app-comp>
(i.e. a ViewChild of <app-comp>), calling getOwningComponent on <child-comp>
would return <app-comp>.
Jump to details