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
511 B
18 lines
511 B
<view |
|
class="custom-class {{ classPrefix }} {{ isImageName ? 'van-icon--image' : classPrefix + '-' + name }}" |
|
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + sizeWithUnit + ';' : '' }}{{ customStyle }}" |
|
bind:tap="onClick" |
|
> |
|
<van-info |
|
wx:if="{{ info !== null || dot }}" |
|
dot="{{ dot }}" |
|
info="{{ info }}" |
|
custom-class="van-icon__info" |
|
/> |
|
<image |
|
wx:if="{{ isImageName }}" |
|
src="{{ name }}" |
|
mode="aspectFit" |
|
class="van-icon__image" |
|
/> |
|
</view>
|
|
|