Vue——<router-link>‘s tag prop is deprecated and has been removed in Vue Router4
官方文档地址:https://router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link// replace<router-link to="/about" tag="span" event="dblclick">About Us</router-link>// with&l
·
官方文档地址:https://router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link
// replace
<router-link to="/about" tag="span" event="dblclick">About Us</router-link>
// with
<router-link to="/about" custom v-slot="{ navigate }">
<span @click="navigate" @keypress.enter="navigate" role="link">About Us</span>
</router-link>
更多推荐
已为社区贡献27条内容
所有评论(0)