route 是否开启路由模式
<template>
<div class="layout-page">
<!-- 二级路由出口 -->
<router-view></router-view>
<van-tabbar route>
<van-tabbar-item to="/home">
首页
<!-- 图标切换为active是高亮 -->
<template #icon="{ active }">
<!-- 封装好的 -->
<cp-icon :name="`home-index-${active ? 'active' : 'default'}`" />
</template>
</van-tabbar-item>
<van-tabbar-item to="/notify">
消息
<template #icon="{ active }">
<cp-icon :name="`home-notice-${active ? 'active' : 'default'}`" />
</template>
</van-tabbar-item>
<van-tabbar-item to="/user">
我的
<template #icon="{ active }">
<cp-icon :name="`home-mine-${active ? 'active' : 'default'}`" />
</template>
</van-tabbar-item>
</van-tabbar>
</div>
</template>
文章来源:https://www.toymoban.com/news/detail-797858.html
文章来源地址https://www.toymoban.com/news/detail-797858.html
到了这里,关于Tabbar切换效果(vant)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!