mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
19 lines
480 B
Plaintext
19 lines
480 B
Plaintext
<view
|
|
class="custom-class {{ classPrefix }} {{ utils.isSrc(name) ? 'van-icon--image' : classPrefix + '-' + name }}"
|
|
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
|
|
bind:tap="onClick"
|
|
>
|
|
<view
|
|
wx:if="{{ info !== null }}"
|
|
class="van-icon__info"
|
|
>
|
|
{{ info }}
|
|
</view>
|
|
<image
|
|
wx:if="{{ utils.isSrc(name) }}"
|
|
src="{{ name }}"
|
|
/>
|
|
</view>
|
|
|
|
<wxs src="../common/utils.wxs" module="utils" />
|