11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
|
|
import { defineStore } from "pinia";
|
||
|
|
import { ref } from "vue";
|
||
|
|
|
||
|
|
export const useEvalutuonStore = defineStore("supportServiceStore", () => {
|
||
|
|
const index = ref<number>(0);
|
||
|
|
|
||
|
|
return {
|
||
|
|
index,
|
||
|
|
};
|
||
|
|
});
|