ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
23 lines (19 loc) • 690 B
text/typescript
import { Component, ChangeDetectionStrategy } from '@angular/core';
({
selector: 'demo-tabs-dynamic',
changeDetection: ChangeDetectionStrategy.OnPush,
templateUrl: './dynamic.html'
})
export class DemoTabsDynamicComponent {
public tabs: any[] = [
{title: 'Dynamic Title 1', content: 'Dynamic content 1'},
{title: 'Dynamic Title 2', content: 'Dynamic content 2', disabled: true},
{title: 'Dynamic Title 3', content: 'Dynamic content 3', removable: true}
];
public setActiveTab(index: number): void {
this.tabs[index].active = true;
}
public removeTabHandler(/*tab:any*/): void {
console.log('Remove Tab handler');
}
}