mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
docs: Fix the Stepper event callback parameter (#5778)
This commit is contained in:
parent
443e78daec
commit
178795253f
@ -94,12 +94,12 @@ Page({
|
|||||||
value: 1,
|
value: 1,
|
||||||
},
|
},
|
||||||
|
|
||||||
onChange(value) {
|
onChange(event) {
|
||||||
Toast.loading({ forbidClick: true });
|
Toast.loading({ forbidClick: true });
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
Toast.clear();
|
Toast.clear();
|
||||||
this.setData({ value });
|
this.setData({ value: event.detail });
|
||||||
}, 500);
|
}, 500);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user