I have a component called tab
which has <ng-content select="[tabItem]"></ng-content>
Sometimes tabItem
is inside other child components. My problem is Angular selects the content from direct children, not inner children (app-my-tab), is there any way to do it?
app.component.html
<app-tabs>
<div tabItem>
Tab 1
</div>
<div tabItem>
Tab 2
</div>
<app-my-tab></app-my-tab>
</app-tabs>
my-tab.component.html
<div tabItem>
My Tab
</div>
<div>
Other content
</div>
See this stackblitz
There is no solution for deep selection. I thing it is logical, because:
If you want really do that use *ngIf in app-my-tab.
To use
*ngIF
:app-tabs
must havetabItem
attributeapp-my-tab
component. andapp-my-tab
receive it as@Input()
propertyapp-my-tab
html use*ngIf
to show or hide some elementExample: https://stackblitz.com/edit/deep-ng-content-2gyttv?file=src/app/app.component.html