electricity_bill_calc_wx/components/searchSelectWrapper/index.js
2025-02-27 17:37:12 +08:00

28 lines
349 B
JavaScript

// components/searchSelectWrapper/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
label: String,
placeholder: String,
text: String
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
onSearch() {
this.triggerEvent("search")
}
}
})