updated format code
This commit is contained in:
parent
b75d69ea08
commit
b14bad2249
241 changed files with 14012 additions and 13811 deletions
|
|
@ -2,16 +2,19 @@ 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,
|
||||
}
|
||||
])
|
||||
export const useExitInterviewQuestionDataStore = defineStore(
|
||||
"exitInterviewQuestion",
|
||||
() => {
|
||||
const question = reactive<Questions[]>([
|
||||
{
|
||||
no: 1,
|
||||
desc: "เหตุใดท่านจึงตัดสินใจร่วมงานกับกรุงเทพมหานคร (เลือกได้มากกว่า 1 ข้อ)",
|
||||
score: 5,
|
||||
},
|
||||
]);
|
||||
|
||||
return {
|
||||
question,
|
||||
};
|
||||
});
|
||||
return {
|
||||
question,
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue