import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
// 避免到当前位置的冗余导航,简单来说就是重复触发了同一个路由。
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
const routes = []
vue 重复触发了同一个路由报错解决
最新推荐文章于 2023-07-20 14:38:40 发布