Guest User

Untitled

a guest
Dec 14th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <div *ngFor="let tab of tabs | async">
  2. <app-tab [tab]="tab"></app-tab>
  3. </div>
  4.  
  5. export class TabComponent implements OnInit {
  6. @Input() tab: Tab;
  7.  
  8. constructor() {
  9. console.log(this.tab);
  10. }
  11.  
  12. ngOnInit() {}
  13. }
  14.  
  15. <mat-tab label="{{ tab.name }}"></mat-tab>
Add Comment
Please, Sign In to add comment