vue-vant-base
vue-vant-base copied to clipboard
van-tabbar 组件路由模式和 vue-navigation 路由缓存应该有冲途~
<template>
<div id="app">
<transition :name="transitionName">
<navigation>
<router-view class="router" />
</navigation>
</transition>
<van-tabbar route>
<van-tabbar-item replace to="/home" icon="home-o">
Home
</van-tabbar-item>
<van-tabbar-item replace to="/about" icon="search">
About
</van-tabbar-item>
</van-tabbar>
</div>
</template>