diff --git a/src/list/index.tsx b/src/list/index.tsx index 350c45074..242889f03 100644 --- a/src/list/index.tsx +++ b/src/list/index.tsx @@ -115,7 +115,10 @@ export default createComponent({ } }; - watch([() => props.loading, () => props.finished], check); + watch( + [() => props.loading, () => props.finished, () => props.error], + check + ); onUpdated(() => { loading.value = props.loading!;