mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
520 B
Plaintext
21 lines
520 B
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
|
|
<view
|
|
class="custom-class {{ classPrefix }} {{ isImageName ? 'van-icon--image' : classPrefix + '-' + name }}"
|
|
style="color: {{ color }};font-size: {{ utils.addUnit(size) }};{{ 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>
|