import { Component } from '@angular/core'; @Component({ selector: 'cm-tabs-doc-4', templateUrl: 'tabs-doc-4.component.html', }) export class TabsDoc4Component { tabs: any = []; nzTabPosition = 'top'; selectedIndex = 0; _console(args: any) { console.log(args); } ngOnInit() { for (let i = 0; i < 11; i++) { this.tabs.push({ name: `Tab ${i}`, content: `Content of tab ${i}` }); } } }