hrms-mgt/src/modules/14_KPI/store/KPIStore.ts

10 lines
220 B
TypeScript
Raw Normal View History

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