From ca1465f43aa615cc02db8f5035d42af4b321e2c8 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Sun, 15 Jun 2025 17:34:39 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E8=B0=83=E6=95=B4=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/common/PostForum.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/common/PostForum.vue b/src/pages/common/PostForum.vue index 6e12760d..9f292eda 100644 --- a/src/pages/common/PostForum.vue +++ b/src/pages/common/PostForum.vue @@ -193,7 +193,7 @@ onMounted(async () => { watch( () => isReachBottom.value, async () => { - if (!isReachBottom.value) return; + if (!isReachBottom.value || !firstLoad.value) return; await loadMore(); }, );