在使用vue3+ vue-router4时

当列表A组件使用 加上keep-alive缓存后,跳转至详情页面时出现

[Vue Router warn]: No match found for location with path "/atlas/editDetails"

解决方案:

router.push({ path: "/atlas/editDetails" })

改成 

<router-link :to="{ path: '/atlas/editDetails' }">

    <el-button type="success">新增</el-button>

</router-link>
Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐