ปรับสมรรถนะ

This commit is contained in:
Warunee Tamkoo 2024-04-11 17:51:03 +07:00
parent 67d8038def
commit 38dcbb3428
8 changed files with 138 additions and 88 deletions

View file

@ -1,6 +1,9 @@
import { defineStore } from "pinia";
import { ref } from "vue";
// store
// store
export const useKPIDataStore = defineStore("KPIDataStore", () => {
return {};
const competencyType = ref<string>("ID1");
return { competencyType };
});