blob: 0f530d7d2727b7134ae1bccbee54f1e89ef9c81b (
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 '@src/app/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;
}
}
|