mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +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,
|
||||
},
|
||||
|
||||
onChange(value) {
|
||||
onChange(event) {
|
||||
Toast.loading({ forbidClick: true });
|
||||
|
||||
setTimeout(() => {
|
||||
Toast.clear();
|
||||
this.setData({ value });
|
||||
this.setData({ value: event.detail });
|
||||
}, 500);
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user