Files

14 lines
156 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
Component({
data: {
value: 35,
},
methods: {
handleChange(e) {
this.setData({
value: e.detail.value,
});
},
},
});