mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Button): should not submit form when loading (#8018)
This commit is contained in:
parent
e97dbeaab5
commit
07678f2d6b
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user