updated format code

This commit is contained in:
Warunee Tamkoo 2024-09-03 11:28:01 +07:00
parent b75d69ea08
commit b14bad2249
241 changed files with 14012 additions and 13811 deletions

View file

@ -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,
};
}
);