1.同一组v-if一定要写在v-else前面
正确用法
<tab-bar-item path="/home" >
<img src="../assets/img/tabbar/home_active.svg" alt="" slot="item-icon-active" v-if="isActive">
<img src="../assets/img/tabbar/home.svg" alt="home" slot="item-icon" v-else>
<span slot="item-text">首页</span>
</tab-bar-item>
错误用法
<tab-bar-item path="/home" >
<img src="../assets/img/tabbar/home.svg" alt="home" slot="item-icon" v-else>
<img src="../assets/img/tabbar/home_active.svg" alt="" slot="item-icon-active" v-if="isActive">
<span slot="item-text">首页</span>
</tab-bar-item>