รายละเอียดงานที่ได้รับมอบหมาย (ส่วนนึง)
This commit is contained in:
parent
a05b234339
commit
244524c0ca
27 changed files with 5092 additions and 8 deletions
20
src/modules/11_probation/store/probation.ts
Normal file
20
src/modules/11_probation/store/probation.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
|
||||
export const useProbationStore = defineStore(
|
||||
"probationStore",
|
||||
() => {
|
||||
const profileId = ref<string>('')
|
||||
const mainTab = ref<string>('')
|
||||
const ratingColors = ref<string[]>([
|
||||
"light-blue-3",
|
||||
"light-blue-6",
|
||||
"blue",
|
||||
"blue-9",
|
||||
"blue-10",
|
||||
]);
|
||||
|
||||
return { mainTab,ratingColors,profileId };
|
||||
}
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue