From b08e72b813d1f96360bc2a201e6ce2d0dc41998d Mon Sep 17 00:00:00 2001 From: yoon Date: Fri, 7 Mar 2025 14:08:26 +0900 Subject: [PATCH] =?UTF-8?q?console=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/loadingStore.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/stores/loadingStore.js b/src/stores/loadingStore.js index 987322a..7d12a61 100644 --- a/src/stores/loadingStore.js +++ b/src/stores/loadingStore.js @@ -6,14 +6,12 @@ export const useLoadingStore = defineStore("loading", () => { const startLoading = () => { loadingCount.value++; - console.log(loadingCount.value) }; const stopLoading = () => { if (loadingCount.value > 0) { setTimeout(() => { loadingCount.value--; - console.log("Stop Loading: ", loadingCount.value); }, 200); // 약간의 지연을 추가하여 응답이 동시에 도착해도 안정적으로 감소 } };