Files

13 lines
165 B
JavaScript
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
Page({
data: {
},
onLoad() {},
bindKeyInput(e) {
this.setData({
inputValue: e.detail.value,
});
console.log(e.detail.value);
},
});