1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

24 lines
409 B
JavaScript
Raw Normal View History

Component({
properties: {
imgUrl: {
type: String,
value:
'https://cdn-we-retail.ym.tencent.com/miniapp/template/empty-cart.png',
},
tip: {
type: String,
value: '购物车是空的',
},
btnText: {
type: String,
value: '去首页',
},
},
data: {},
methods: {
handleClick() {
this.triggerEvent('handleClick');
},
},
});