แก้ assess เป็น evaluate
This commit is contained in:
parent
5f97ee9377
commit
d71b2a172f
25 changed files with 83 additions and 75 deletions
27
src/modules/06_evaluate/store.ts
Normal file
27
src/modules/06_evaluate/store.ts
Normal 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,
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue