</app-slidebar>
</ng-template>
Может знает кто как получить ссылку на slide?
/** Создаем фильтр в теге body */
public openFilter(): void {
if (!document.querySelector('app-slidebar')) {
this.createPortalFilterComponent();
}
debugger;
// здесь нужна ссылка
}
private createPortalFilterComponent(): void {
this.slider = this.viewContainerRef.createEmbeddedView(
this.portalFilter
);
this.slider.rootNodes.forEach(rootNode => this.tagBody.appendChild(rootNode));
}
@ViewChild('slide') slide: ElementRef;
https://angular.io/api/core/ViewChild
Обсуждают сегодня