electricity_bill_calc_wx/components/empty/index.js

29 lines
341 B
JavaScript

// components/empty/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
text: {
type: String,
value: '暂无数据'
},
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
refresh() {
this.triggerEvent("refresh")
}
}
})