Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2024-02-23 10:53:31 +07:00
commit b85a61920d
12 changed files with 618 additions and 29 deletions

View 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 };
});