image.wxml 619 B

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