Files
electricity_bill_calc_wx/pages/workBenchNew/components/operateButton/index.js
2025-11-03 16:26:30 +08:00

27 lines
340 B
JavaScript

// pages/workBenchNew/components/operateButton/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
text: String,
style: String,
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
handleClick() {
this.triggerEvent("click")
}
}
})