论坛进入user页中时,会跳入到localhost:8080/user/user/{id}中,解决办法:
import vueRouter from 'vue-router'
const originalPush = vueRouter.prototype.push;
vueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err);
}
vueRouter为自定义的名字