解决重复使用路由问题

  • 解决重复使用路由问题
main.js
import Router from 'vue-router'
const routerPush = Router.prototype.push
Router.prototype.push = function push(location) {
return routerPush.call(this, location).catch(error=> error)
}

  

posted @ 2021-07-13 10:10  zjxgdq  阅读(67)  评论(0编辑  收藏  举报