13 lines
165 B
JavaScript
13 lines
165 B
JavaScript
Page({
|
|
data: {
|
|
|
|
},
|
|
onLoad() {},
|
|
bindKeyInput(e) {
|
|
this.setData({
|
|
inputValue: e.detail.value,
|
|
});
|
|
console.log(e.detail.value);
|
|
},
|
|
});
|