在使用ElementUi时点击同一个路由,页面报错
查询后解决方式如下
import Router from 'vue-router'
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
在使用ElementUi时点击同一个路由,页面报错
查询后解决方式如下
import Router from 'vue-router'
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
相关文章: