2024-04-04 14:14:25 +07:00
|
|
|
import { defineStore } from "pinia";
|
2024-04-09 15:22:23 +07:00
|
|
|
import { ref } from "vue";
|
2024-04-04 14:14:25 +07:00
|
|
|
|
|
|
|
|
export const useKpiDataStore = defineStore("KPIDate", () => {
|
2024-04-09 15:22:23 +07:00
|
|
|
const tabMain = ref<string>("1");
|
2024-04-22 17:26:12 +07:00
|
|
|
const dataProfile = ref<any>();
|
|
|
|
|
const dataEvaluation = ref<any>();
|
|
|
|
|
|
|
|
|
|
return { tabMain, dataProfile, dataEvaluation };
|
2024-04-04 14:14:25 +07:00
|
|
|
});
|