Closed wsb260 closed 4 years ago
场景是父路由跳转子路由 因为noahv的路由功能不支持重定向,所有选择通过编程式用push跳转 但是会报以下错误
然后通过添加以下代码可以消除错误
const routerPush = VueRouter.prototype.push; VueRouter.prototype.push = function push(location) { return routerPush.call(this, location)['catch'](error => error); };
不知道有没有人遇见这种错误
hello,贴一个你的使用方法吧,包括你的路由配置、push方法在那个页面中写的,访问那个页面报错等信息
为什么要在父路由中push子路由的地址呢?
我的诉求是想要进入系统的时候默认进入子路由
关联到 #81
然后通过添加以下代码可以消除错误
不知道有没有人遇见这种错误