1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| 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');
| },
| },
| });
|
|