From 07678f2d6be928ff4065ed0d92eb838aeecf2868 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 26 Jan 2021 21:23:25 +0800 Subject: [PATCH] fix(Button): should not submit form when loading (#8018) --- src/button/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/button/index.tsx b/src/button/index.tsx index b6bf00da9..738f9b84a 100644 --- a/src/button/index.tsx +++ b/src/button/index.tsx @@ -135,6 +135,9 @@ export default createComponent({ }; const onClick = (event: MouseEvent) => { + if (props.loading) { + event.preventDefault(); + } if (!props.loading && !props.disabled) { emit('click', event); route();