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();