You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
493 B
18 lines
493 B
1 year ago
|
<template name="image">
|
||
|
<t-image
|
||
|
style="{{style || ''}}"
|
||
|
error="{{error || 'default'}}"
|
||
|
lazy="{{lazy || false}}"
|
||
|
loading="{{count || 'default'}}"
|
||
|
shape="{{shape || 'square'}}"
|
||
|
src="{{src || ''}}"
|
||
|
mode="{{mode || 'scaleToFill'}}"
|
||
|
webp="{{webp || false}}"
|
||
|
showMenuByLongpress="{{showMenuByLongpress || false}}"
|
||
|
bind:error="{{binderror}}"
|
||
|
bind:load="{{bindload}}"
|
||
|
t-class="{{class}} {{tClass}}"
|
||
|
t-class-load="{{tClassLoad}}"
|
||
|
/>
|
||
|
</template>
|