9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { defineStore } from "pinia";
|
|
import { ref } from "vue";
|
|
|
|
// store
|
|
export const useKPIDataStore = defineStore("KPIDataStore", () => {
|
|
const competencyType = ref<string>("ID1");
|
|
|
|
return { competencyType };
|
|
});
|