/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { Component } from '@angular/core'; import { Router } from '@angular/router'; @Component({ selector: 'nb-tabset-test', template: ` Content #1 Content #2 Content #3 Content #1 Content #2 Content #3 Content #1 Content #2 Content #3 Content #1 Content #2 Content #3 Content #1 Content #2 Content #3 `, }) export class NbTabsetTestComponent { constructor(private router: Router) { } changeTab($event: any) { this.router.navigate(['tabset', $event.route]); } }