แก้ assess เป็น evaluate

This commit is contained in:
Warunee Tamkoo 2023-12-14 14:49:27 +07:00
parent 5f97ee9377
commit d71b2a172f
25 changed files with 83 additions and 75 deletions

View file

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