美文网首页
error 'tag' property on 'router

error 'tag' property on 'router

作者: 兜兜里冒糖糖 | 来源:发表于2022-03-16 15:33 被阅读0次
image.png

主要原因:vue-routerv3.1.x以上版本,新增“v-slot”,推荐使用‘custom v-slot’代替‘tag="li"’

Vue Router3.1.0以下 以前
 <router-link tag='div' to='/customer' class="customer">联系客服</router-link>
 
Vue Router3.1.0以上 现在
<router-link to="/about" custom v-slot="{ navigate }">
  <li @click="navigate" @keypress.enter="navigate" role="link">About Us</li>
</router-link>

相关文章

网友评论

      本文标题:error 'tag' property on 'router

      本文链接:https://www.haomeiwen.com/subject/nhhsdrtx.html