2021-12-21 09:51:43 +08:00

23 lines
362 B
TypeScript

import { VantComponent } from '../../common/component';
VantComponent({
data: {
currentValue: 50,
},
methods: {
onChange(event) {
wx.showToast({
icon: 'none',
title: `当前值:${event.detail}`,
});
},
onDrag(event) {
this.setData({
currentValue: event.detail.value,
});
},
},
});