Last active
April 8, 2019 07:58
-
-
Save carusog/79ea4711457fd57f0843d0d681becc2a to your computer and use it in GitHub Desktop.
how to access your component element instance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| ElementRef | |
| } from '@angular/core'; | |
| // omitted code | |
| constructor(private el: ElementRef) { | |
| console.log('###element', el); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment