docs: Fix the Stepper event callback parameter (#5778)

This commit is contained in:
xiejiahe 2024-05-14 20:25:40 +08:00 committed by GitHub
parent 443e78daec
commit 178795253f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
},
});