index.js 878 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Component({
  2. options:{
  3. multipleSlots: true // 在组件定义时的选项中启用多slot支持
  4. },
  5. /**
  6. * 组件的属性列表
  7. */
  8. properties: {
  9. label:{
  10. type:String,
  11. default: null
  12. },
  13. content: {
  14. type:String,
  15. default:null
  16. },
  17. arrow:{
  18. type:String,
  19. default:null
  20. },
  21. arrowText:{
  22. type: String,
  23. default: ''
  24. },
  25. labelClass:{
  26. type: String,
  27. default: ''
  28. },
  29. arrowTextClass:{
  30. type: String,
  31. default: ''
  32. }
  33. },
  34. /**
  35. * 组件的初始数据
  36. */
  37. data: {
  38. },
  39. /**
  40. * 组件的方法列表
  41. */
  42. methods: {
  43. arrowtap(){
  44. this.triggerEvent("arrowtap")
  45. }
  46. }
  47. })