通过监听路由路径的变化来改变面包屑导航的标题

完整代码如下:




由于我用的是element-ui插件,当路由在没有改变的时候进行重复点击时,会有报错,虽然并不影响使用,但是对于强迫症的我来说看着还是很不舒服,所在在router的配置文件index.js进入如下配置:
const router = new VueRouter({
  routes,
});
//以下这一句代码就是解决报错的方法
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

你可能感兴趣的:(通过监听路由路径的变化来改变面包屑导航的标题)