blob: b88b9073f79374ad3b7315e28d7f77e11b55fd05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-slicing-resource-management',
templateUrl: './slicing-resource-management.component.html',
styleUrls: ['./slicing-resource-management.component.less']
})
export class SlicingResourceManagementComponent implements OnInit {
constructor() { }
ngOnInit() {
}
currentTab = 'Slicing Business Management';
handleTabChange($event): void {
console.log($event,"$event");
this.currentTab = $event.tab._title;
}
}
|