รายละเอียดงานที่ได้รับมอบหมาย (ส่วนนึง)

This commit is contained in:
STW_TTTY\stwtt 2024-05-31 16:00:09 +07:00
parent a05b234339
commit 244524c0ca
27 changed files with 5092 additions and 8 deletions

View 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 };
}
);