import { defineStore } from "pinia"; import { ref } from "vue"; export const useEvaluateStore = defineStore("evaluateStore", () => { const tabMenu = ref("1"); const showLoadStatus = ref(false); const step = ref(1); const currentStep = ref(1); const title = ref([ "ตรวจสอบคุณสมบัติ", "จัดเตรียมเอกสารเล่ม 1", "ตรวจสอบเอกสารเล่ม 1", "รอตรวจสอบคุณสมบัติ", "ประกาศบนเว็บไซต์", "จัดเตรียมเอกสารเล่ม 2", "ตรวจสอบเอกสารเล่ม 2", "รอพิจารณาผล", "เสร็จสิ้น", ]); const tabPanels = ref("1"); const evaluateId = ref(""); return { tabMenu, step, currentStep, title, tabPanels, evaluateId, showLoadStatus, }; });