mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[Doc] Stepper: optimize async demo (#3098)
This commit is contained in:
parent
a5a5e56952
commit
1a085f178c
@ -51,9 +51,16 @@ export default {
|
|||||||
stepper3: null
|
stepper3: null
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(value) {
|
onChange(value) {
|
||||||
|
if (this.changing) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.changing = true;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
this.changing = false;
|
||||||
this.stepper2 = value;
|
this.stepper2 = value;
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
|
@ -51,8 +51,14 @@ export default {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(value) {
|
onChange(value) {
|
||||||
|
if (this.changing) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.changing = true;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
|
this.changing = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,8 +53,14 @@ export default {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(value) {
|
onChange(value) {
|
||||||
|
if (this.changing) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.changing = true;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
|
this.changing = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user