image.wxml 603 B

123456789101112131415161718192021
  1. <template name="image">
  2. <t-image
  3. class="{{class}}"
  4. t-class="{{tClass}}"
  5. t-class-load="{{tClassLoad}}"
  6. style="{{style || ''}}"
  7. customStyle="{{customStyle || ''}}"
  8. height="{{height || ''}}"
  9. width="{{width || ''}}"
  10. error="{{error || 'default'}}"
  11. lazy="{{lazy || false}}"
  12. loading="{{count || 'default'}}"
  13. shape="{{shape || 'square'}}"
  14. src="{{src || ''}}"
  15. mode="{{mode || 'scaleToFill'}}"
  16. webp="{{webp || false}}"
  17. showMenuByLongpress="{{showMenuByLongpress || false}}"
  18. bind:error="{{binderror}}"
  19. bind:load="{{bindload}}"
  20. />
  21. </template>