index.js 714 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Component({
  2. externalClasses: ['i-class'],
  3. options: {
  4. multipleSlots: true
  5. },
  6. properties: {
  7. full: {
  8. type: Boolean,
  9. value: false
  10. },
  11. thumb: {
  12. type: String,
  13. value: ''
  14. },
  15. title: {
  16. type: String,
  17. value: ''
  18. },
  19. extra: {
  20. type: String,
  21. value: ''
  22. },
  23. logo: {
  24. type: String,
  25. value: ''
  26. },
  27. size: {
  28. type: String,
  29. value: 'default' // small, default, large
  30. },
  31. shape: {
  32. type: String,
  33. value: 'square' // square, circle
  34. }
  35. }
  36. });