exit interview ความคิดเห็น และแกไขคำถาม
This commit is contained in:
parent
040a191573
commit
13203150cc
6 changed files with 757 additions and 191 deletions
17
src/modules/06_retirement/storeExitInterviewQuestion.ts
Normal file
17
src/modules/06_retirement/storeExitInterviewQuestion.ts
Normal 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,
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue