WGShare.Client.Wx/pages/slider/label/index.js

18 lines
211 B
JavaScript

Component({
options: {
styleIsolation: 'apply-shared',
},
data: {
value: 35,
},
methods: {
handleChange(e) {
this.setData({
value: e.detail.value,
});
},
},
});