exit interview ความคิดเห็น และแกไขคำถาม

This commit is contained in:
Warunee Tamkoo 2023-09-24 11:16:05 +07:00
parent 040a191573
commit 13203150cc
6 changed files with 757 additions and 191 deletions

View file

@ -0,0 +1,17 @@
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,
};
});