ui รายการลาออก

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-25 15:09:06 +07:00
parent d08dbd9528
commit 8d8ba07217
12 changed files with 1497 additions and 463 deletions

View file

@ -0,0 +1,20 @@
import { defineStore } from "pinia";
import { reactive } from "vue";
import type { Questions } from "@/modules/06_retirement/interface/index/ExitInterviewQuestion";
export const useExitInterviewQuestionDataStore = defineStore(
"exitInterviewQuestion",
() => {
const question = reactive<Questions[]>([
{
no: 1,
desc: "เหตุใดท่านจึงตัดสินใจร่วมงานกับกรุงเทพมหานคร (เลือกได้มากกว่า 1 ข้อ)",
score: 5,
},
]);
return {
question,
};
}
);