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