2024-02-15 11:46:25 +07:00
|
|
|
import { defineStore } from "pinia";
|
2024-04-11 17:51:03 +07:00
|
|
|
import { ref } from "vue";
|
2024-02-15 11:46:25 +07:00
|
|
|
|
2024-04-11 17:51:03 +07:00
|
|
|
// store
|
2024-02-15 11:46:25 +07:00
|
|
|
export const useKPIDataStore = defineStore("KPIDataStore", () => {
|
2024-04-19 11:42:15 +07:00
|
|
|
const competencyType = ref<string>("HEAD");
|
2024-04-11 17:51:03 +07:00
|
|
|
|
|
|
|
|
return { competencyType };
|
2024-02-15 11:46:25 +07:00
|
|
|
});
|