У меня следующая ситуация, у меня есть UserProfileComponent со структурой вкладок, и я хочу добавить вкладки из разных модулей.
UserProfileComponent.html
<ngb-tabset>
<ngb-tab>
<app-user-profile-history></app-user-profile-history>
<another-tab></another-tab>
</ngb-tab>
</ngb-tabset>
app-user-profile-history.html
<ng-template ngbTabTitle>History</ng-template>
<ng-template ngbTabContent>
<p>text</p>
</ng-template>
компоненты объявлены в главном модуле.Основной модуль
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { UserProfileComponent } from './user-profile/user-profile.component';
import { HistoryComponent } from './user-profile/history/history.component';
import { AnotherTabComponent } from './user-profile/another-tab/another-tab.component';
@NgModule({
imports: [
CommonModule,
NgbModule.forRoot()
],
declarations: [
UserProfileComponent,
HistoryComponent,
AnotherTabComponent]
})
Но содержимое не отображается