2018-12-03 17:18:32 +08:00

22 lines
599 B
Plaintext

<view
class="van-tabbar-item {{ active ? 'van-tabbar-item--active' : '' }}"
bind:tap="onClick"
>
<view class="van-tabbar-item__icon {{ dot ? 'van-tabbar-item__icon--dot' : '' }}">
<van-icon
wx:if="{{ icon }}"
name="{{ icon }}"
info="{{ info }}"
customStyle="display: block"
/>
<block wx:else>
<slot wx:if="{{ active }}" name="icon-active" />
<slot wx:else name="icon" />
<view wx:if="{{ info !== null }}" class="van-icon__info">{{ info }}</view>
</block>
</view>
<view class="van-tabbar-item__text">
<slot />
</view>
</view>