import { Component } from '@angular/core'; @Component({ selector: 'app-job-description', templateUrl: './job-description.component.html', styleUrls: ['./job-description.component.scss'] }) export class JobDescriptionComponent {
pathTitle = ['การจัดการข้อมูลองค์กร', 'ข้อมูลลักษณะงาน', 'กลุ่มพนักงาน']
activeTab: string = 'tab1'; // ฟังก์ชันในการเปลี่ยนแท็บ changeTab(tab: { id: string, text: string }) {
this.pathTitle = ['การจัดการข้อมูลองค์กร', 'ข้อมูลลักษณะงาน', tab.text]
this.activeTab = tab.id } }