From e416702ccbf5851604fac4bab9f86922ba220fd4 Mon Sep 17 00:00:00 2001 From: yuantongkang Date: Sat, 24 May 2025 23:43:06 +0800 Subject: [PATCH] fix(Image): Update loading state handling --- components/vc-image/src/Image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/vc-image/src/Image.tsx b/components/vc-image/src/Image.tsx index 643708dc5..c65287651 100644 --- a/components/vc-image/src/Image.tsx +++ b/components/vc-image/src/Image.tsx @@ -269,7 +269,7 @@ const ImageInternal = defineComponent({ ref={img} /> - {status.value === 'loading' && ( + {(status.value === 'loading' || status.value === 'error') && (