🚸 调整加载顺序

This commit is contained in:
BTMuli
2025-06-15 17:34:39 +08:00
parent 0e01f2bdaa
commit ca1465f43a

View File

@@ -193,7 +193,7 @@ onMounted(async () => {
watch(
() => isReachBottom.value,
async () => {
if (!isReachBottom.value) return;
if (!isReachBottom.value || !firstLoad.value) return;
await loadMore();
},
);