index.js 212 B

1234567891011121314151617
  1. Component({
  2. data: { icon: 'cart' },
  3. properties: {
  4. count: {
  5. type: Number,
  6. },
  7. },
  8. methods: {
  9. goToCart() {
  10. wx.switchTab({
  11. url: '/pages/cart/index',
  12. });
  13. },
  14. },
  15. });