mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
23 lines
386 B
TypeScript
23 lines
386 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
import Toast from '../../toast/toast';
|
|
|
|
VantComponent({
|
|
data: {
|
|
value: 1,
|
|
},
|
|
|
|
methods: {
|
|
onChange(event) {
|
|
Toast.loading({
|
|
context: this,
|
|
forbidClick: true,
|
|
});
|
|
|
|
setTimeout(() => {
|
|
Toast.clear();
|
|
this.setData({ value: event.detail });
|
|
}, 500);
|
|
},
|
|
},
|
|
});
|