From ccc0649cbaa0eae08c4c5f40a1b4daf78c7ed68b Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 19 Nov 2022 18:51:56 +0800 Subject: [PATCH] fix(List): incorrect initial loading value (#11275) --- packages/vant/src/list/List.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/src/list/List.tsx b/packages/vant/src/list/List.tsx index 1d69fde44..d7c47da56 100644 --- a/packages/vant/src/list/List.tsx +++ b/packages/vant/src/list/List.tsx @@ -53,7 +53,7 @@ export default defineComponent({ setup(props, { emit, slots }) { // use sync innerLoading state to avoid repeated loading in some edge cases - const loading = ref(false); + const loading = ref(props.loading); const root = ref(); const placeholder = ref(); const tabStatus = useTabStatus();