index.js 410 B

12345678910111213141516171819202122
  1. Component({
  2. properties: {
  3. imgUrl: {
  4. type: String,
  5. value: 'https://tdesign.gtimg.com/miniprogram/template/retail/template/empty-cart.png',
  6. },
  7. tip: {
  8. type: String,
  9. value: '购物车是空的',
  10. },
  11. btnText: {
  12. type: String,
  13. value: '去首页',
  14. },
  15. },
  16. data: {},
  17. methods: {
  18. handleClick() {
  19. this.triggerEvent('handleClick');
  20. },
  21. },
  22. });