This commit is contained in:
STW_TTTY\stwtt 2024-04-09 15:22:23 +07:00
parent cf66659b9a
commit 59aa022bab
15 changed files with 1629 additions and 6 deletions

View file

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