index.js 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. externalClasses: ['l-class', 'l-img-class','l-title-class'],
  6. options: {
  7. multipleSlots: true // 在组件定义时的选项中启用多slot支持
  8. },
  9. properties: {
  10. image: String,
  11. title: String,
  12. describe: String,
  13. plaintext: Boolean,
  14. full: Boolean,
  15. position:{
  16. type:String,
  17. value:'left'
  18. },
  19. imageMode:{
  20. type:String,
  21. value: 'aspectFit'
  22. },
  23. type: {
  24. type: String,
  25. value: 'primary'
  26. }
  27. },
  28. /**
  29. * 组件的初始数据
  30. */
  31. data: {
  32. },
  33. /**
  34. * 组件的方法列表
  35. */
  36. methods: {
  37. }
  38. });