fix(List): should watch error prop and check position

This commit is contained in:
chenjiahan 2021-01-02 20:47:56 +08:00
parent 4fb58297d6
commit b79c32183f

View File

@ -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!;