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