branch-business-unit.component.ts 597 Bytes
Newer Older
1 2 3 4 5 6 7 8
import { Component, EventEmitter, Input, Output } from '@angular/core';

@Component({
  selector: 'app-branch-business-unit',
  templateUrl: './branch-business-unit.component.html',
  styleUrls: ['./branch-business-unit.component.scss']
})
export class BranchBusinessUnitComponent {
9
  @Input() pathTitle = ['การจัดการข้อมูลองค์กร', 'ทะเบียนบริษัท', 'สาขาและหน่วยธุรกิจ' ,'ทะเบียนฝ่าย']
10 11
  @Output() sendPathTitle: EventEmitter<string[]> = new EventEmitter<string[]>();
}
12