Files

18 lines
212 B
JavaScript
Raw Permalink Normal View History

2025-11-17 13:32:54 +08:00
Component({
data: { icon: 'cart' },
properties: {
count: {
type: Number,
},
},
methods: {
goToCart() {
wx.switchTab({
url: '/pages/cart/index',
});
},
},
});