From 7f519726488d757aaeeb594dadc688fb9e6b4d56 Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Tue, 2 Jul 2024 13:06:47 +0700 Subject: [PATCH] no message --- src/modules/14_KPI/components/Tab/Topic/02_Competency.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/14_KPI/components/Tab/Topic/02_Competency.vue b/src/modules/14_KPI/components/Tab/Topic/02_Competency.vue index 73b636a68..1dcad6a59 100644 --- a/src/modules/14_KPI/components/Tab/Topic/02_Competency.vue +++ b/src/modules/14_KPI/components/Tab/Topic/02_Competency.vue @@ -127,7 +127,7 @@ function onAdd(type: string) { } const rows = ref([]); -const lists = ref([]); +const lists = ref([]); // const resultEvaluation = ref(0); function getData(type: any) { @@ -136,7 +136,6 @@ function getData(type: any) { .then(async (res) => { const data = res.data.result.data; rows.value[type] = data; - console.log("🚀 ~ .then ~ rows.value[type]:", rows.value[type]) lists.value = await lists.value.filter((x: any) => x.type != type); lists.value.push({ type: type, data }); })