mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
268 B
JavaScript
21 lines
268 B
JavaScript
Page({
|
|
data: {
|
|
inputValue: '',
|
|
focus: true
|
|
},
|
|
|
|
searchChange(e) {
|
|
this.setData({
|
|
inputValue: e.detail.value
|
|
});
|
|
},
|
|
|
|
searchDone(e) {
|
|
console.error('search', e.detail.value)
|
|
},
|
|
|
|
handleCancel() {
|
|
console.error('cancel')
|
|
}
|
|
});
|