index.js 459 B

12345678910111213141516171819202122232425262728293031
  1. // components/My_fixedButton/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. click: {
  8. type: Function
  9. },
  10. titel: {
  11. type: String,
  12. value: "发布"
  13. }
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {
  19. },
  20. /**
  21. * 组件的方法列表
  22. */
  23. methods: {
  24. toPage() {
  25. this.triggerEvent('click')
  26. }
  27. }
  28. })