Skip to content

Instantly share code, notes, and snippets.

@pietmichal
Last active January 8, 2017 20:05
Show Gist options
  • Select an option

  • Save pietmichal/9bdc5104e226d5fac4705a54497bade7 to your computer and use it in GitHub Desktop.

Select an option

Save pietmichal/9bdc5104e226d5fac4705a54497bade7 to your computer and use it in GitHub Desktop.
Medium tutorial part3
@Component({
selector: 'app-tabs',
template: ``,
})
export class TabsComponent implements AfterContentInit {
@ContentChildren(TabComponent) tabList: QueryList<TabComponent>;
currentTab: TabComponent;
ngAfterContentInit() {
this.currentTab = this.tabList.first;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment