ui รายการลาออก
This commit is contained in:
parent
d08dbd9528
commit
8d8ba07217
12 changed files with 1497 additions and 463 deletions
|
|
@ -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,
|
||||
};
|
||||
}
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue