学无先后,达者为师

网站首页 Vue 正文

vue router push重定向问题

作者:周亚鑫 更新时间: 2022-01-01 Vue

vue router push重定向问题

 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);
};

原文链接:https://blog.csdn.net/q4717529/article/details/122101220

栏目分类
最近更新