报错:重复点击左侧导航栏的首页,出现报错
解决方法:以下的两种一样,只是文件类型不一样
1.js写法
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)
}
2.ts写法
import Router from ‘vue-router’
Vue.use(Router)
const originalPush = Router.prototype.push
Router.prototype.push = function push(location:string) {
return (originalPush.call(this, location) as any).catch((err:any) => err)
}