blob: e2ca18e2b1600e7599bbeca7303d86e1f52e3e30 (
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 = 'Slicing Task Management';
handleTabChange($event): void {
console.log($event,"$event");
this.currentTab = $event.tab._title;
}
}
|