index.js 432 B

1234567891011121314151617181920212223242526
  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. }
  24. });