myToast.js 388 B

123456789101112131415161718192021222324252627
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. properties: {
  6. flag: {
  7. type: "Boolean",
  8. value: false
  9. },
  10. },
  11. /**
  12. * 组件的初始数据
  13. */
  14. data: {
  15. flag: true,
  16. },
  17. /**
  18. * 组件的方法列表
  19. */
  20. methods: {
  21. close: function () {
  22. this.triggerEvent('ShowAlert', {})
  23. },
  24. }
  25. })