mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
362 B
TypeScript
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,
|
|
});
|
|
},
|
|
},
|
|
});
|