mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
291 B
JavaScript
21 lines
291 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
currentValue: 50
|
|
},
|
|
|
|
onChange(event) {
|
|
wx.showToast({
|
|
icon: 'none',
|
|
title: `当前值:${event.detail}`
|
|
});
|
|
},
|
|
|
|
onDrag(event) {
|
|
this.setData({
|
|
currentValue: event.detail.value
|
|
});
|
|
}
|
|
});
|