nemo-shen 04d3d9b80d
feat(Slider): add vertical prop (#4486)
* 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>
2021-09-23 17:33:27 +08:00

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,
});
},
});