Merge branch 'develop' into devTee
This commit is contained in:
commit
b85a61920d
12 changed files with 618 additions and 29 deletions
8
src/modules/13_salary/store/SalaryListsStore.ts
Normal file
8
src/modules/13_salary/store/SalaryListsStore.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
export const useSalaryListSDataStore = defineStore("salaryListStore", () => {
|
||||
const tabGroup = ref<string>("group1");
|
||||
const tabType = ref<string>("tab1");
|
||||
return { tabGroup, tabType };
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue