blob: 597e4ee978d4ba9b0d6033cf73e044c1389b8c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { Component, OnInit, HostBinding } from '@angular/core';
import { slideToRight } from '../../../shared/utils/animates';
@Component({
selector: 'app-slicing-management',
templateUrl: './slicing-management.component.html',
styleUrls: ['./slicing-management.component.less'],
animations: [slideToRight]
})
export class SlicingManagementComponent implements OnInit {
@HostBinding('@routerAnimate') routerAnimateState;
constructor() { }
ngOnInit() {
}
currentTab = 'communication Service';
handleTabChange($event): void {
console.log($event,"$event");
this.currentTab = $event.tab._title;
}
}
|