blob: 3ad730fb5400613befeea6a015b3e5ffcd2ec60a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 {
this.currentTab = $event.tab._title;
}
}
|