navLinks: any[];
activeLinkIndex = -1;
constructor(private router: Router) {
this.navLinks = [
{
label: 'Default',
link: './default',
index: 0
}, {
label: 'Configured caching',
link: './cache',
index: 1
}, {
label: 'Configured non-caching',
link: './non-cache',
index: 2
},
];