Files

23 lines
410 B
JavaScript
Raw Permalink Normal View History

2025-11-17 13:32:54 +08:00
Component({
properties: {
imgUrl: {
type: String,
value: 'https://tdesign.gtimg.com/miniprogram/template/retail/template/empty-cart.png',
},
tip: {
type: String,
value: '购物车是空的',
},
btnText: {
type: String,
value: '去首页',
},
},
data: {},
methods: {
handleClick() {
this.triggerEvent('handleClick');
},
},
});