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.
24 lines
628 B
24 lines
628 B
<van-tabbar
|
|
class="myTabbar"
|
|
active="{{ active }}"
|
|
bind:change="onChange"
|
|
active-color="#000"
|
|
inactive-color="#666"
|
|
placeholder="{{ true }}"
|
|
safe-area-inset-bottom="{{ true }}">
|
|
<van-tabbar-item wx:for="{{ list }}" wx:key="index" class="tabbarItem">
|
|
<image
|
|
slot="icon"
|
|
src="{{ item.blur }}"
|
|
mode="aspectFit"
|
|
class="tabbarIcon"
|
|
/>
|
|
<image
|
|
slot="icon-active"
|
|
src="{{ item.focus }}"
|
|
mode="aspectFit"
|
|
class="tabbarIcon"
|
|
/>
|
|
{{ item.text }}
|
|
</van-tabbar-item>
|
|
</van-tabbar>
|
|
|