ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง
This commit is contained in:
parent
64683fc074
commit
febf161d81
10 changed files with 896 additions and 12 deletions
13
src/modules/13_salary/store/SalaryEmployeeChart.ts
Normal file
13
src/modules/13_salary/store/SalaryEmployeeChart.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { defineStore } from "pinia";
|
||||
|
||||
import { ref } from "vue";
|
||||
|
||||
export const useSalaryEmployeeChartDataStore = defineStore(
|
||||
"salaryEmployeeChart",
|
||||
() => {
|
||||
const mainTab = ref<string>("structure");
|
||||
return {
|
||||
mainTab,
|
||||
};
|
||||
}
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue