mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(Slider): add vertical prop * fix: adjust * Update README.md Co-authored-by: neverland <chenjiahan@youzan.com> Co-authored-by: neverland <chenjiahan@buaa.edu.cn>
21 lines
295 B
JavaScript
21 lines
295 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,
|
|
});
|
|
},
|
|
});
|