使用vue-router的activated时的问题

vue-router.esm.js?fe87:1958 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/home/news".

解决办法:


import Router from 'vue-router'

const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err)

 

posted @ 2020-08-22 16:02  CHUNYIN  阅读(1130)  评论(0)    收藏  举报