blob: 2d6f59d2636ed8bc61d7f30b7f86776d9d5fe6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { Component, HostBinding, OnInit } from '@angular/core';
import { slideToRight } from '../../../shared/utils/animates';
@Component({
selector: 'app-intent-based-services',
templateUrl: './intent-based-services.component.html',
styleUrls: ['./intent-based-services.component.less'],
animations: [slideToRight]
})
export class IntentBasedServicesComponent implements OnInit {
@HostBinding('@routerAnimate') routerAnimateState;
selectedIndex:number = 0;
constructor() { }
ngOnInit() {
}
handleTabChange($event): void {
this.selectedIndex = $event.index;
}
}
|