Newer
Older
Directive, ElementRef
@Directive()
export abstract class ElementComponent {
constructor(private elementRef: ElementRef) {}
get domElement(): Element {
return this.elementRef.nativeElement;
}
Directive, ElementRef
@Directive()
export abstract class ElementComponent {
constructor(private elementRef: ElementRef) {}
get domElement(): Element {
return this.elementRef.nativeElement;
}