หน้ารายการผู้ประเมิน => เพิ่ม tab

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-09 18:32:57 +07:00
parent a99119660b
commit f28baeb158
7 changed files with 472 additions and 114 deletions

View file

@ -0,0 +1,7 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useKPIEvaluatorDataStore = defineStore("KPIEvaluator", () => {
const tabMain = ref<string>("");
return { tabMain };
});