mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onChange(value) {
|
||||
if (this.changing) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.changing = true;
|
||||
setTimeout(() => {
|
||||
this.changing = false;
|
||||
this.stepper2 = value;
|
||||
}, 500);
|
||||
}
|
||||
|
@ -51,8 +51,14 @@ export default {
|
||||
|
||||
methods: {
|
||||
onChange(value) {
|
||||
if (this.changing) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.changing = true;
|
||||
setTimeout(() => {
|
||||
this.value = value;
|
||||
this.changing = false;
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
|
@ -53,8 +53,14 @@ export default {
|
||||
|
||||
methods: {
|
||||
onChange(value) {
|
||||
if (this.changing) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.changing = true;
|
||||
setTimeout(() => {
|
||||
this.value = value;
|
||||
this.changing = false;
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user