แบบประเมิน => class rating

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-24 10:57:51 +07:00
parent 3c0c3717a0
commit 6f5fb7117f
3 changed files with 233 additions and 13 deletions

View file

@ -170,6 +170,14 @@ export const useKpiDataStore = defineStore("KPIDate", () => {
}
}
const ratingColors = ref<string[]>([
"light-blue-3",
"light-blue-6",
"blue",
"blue-9",
"blue-10",
]);
return {
tabMain,
dataProfile,
@ -181,6 +189,7 @@ export const useKpiDataStore = defineStore("KPIDate", () => {
checkCompetency,
checkCompetencyDefaultCompetencyLevel,
defaultCompetencyCoreLevel,
defaultCompetencyGroupLevel
defaultCompetencyGroupLevel,
ratingColors,
};
});