แยกเป็น component ทดลองงาน

This commit is contained in:
Thanit Konmek 2023-07-26 03:15:51 +07:00
parent 97b5e63813
commit 86c61e8bf3
14 changed files with 2228 additions and 1332 deletions

View file

@ -281,3 +281,17 @@ export const useOrderPlacementDataStore = defineStore("placementOrder", () => {
DataMainOrder,
};
});
export const useProbationDataStore = defineStore("probationDataStore", () => {
const ratingColors = ref<string[]>([
"light-blue-3",
"light-blue-6",
"blue",
"blue-9",
"blue-10",
]);
return {
ratingColors,
};
});