Files
ZhiQiXiaoYuan/components/empty/empty.js
ChuXun eaab9a762a 1
2025-10-19 20:28:31 +08:00

32 lines
450 B
JavaScript

// components/empty/empty.js
Component({
properties: {
show: {
type: Boolean,
value: false
},
icon: {
type: String,
value: '📭'
},
text: {
type: String,
value: '暂无数据'
},
desc: {
type: String,
value: ''
},
buttonText: {
type: String,
value: ''
}
},
methods: {
onButtonClick() {
this.triggerEvent('buttonclick')
}
}
})