这是我的axios请求的一部分:
.then(function (response) {
self.forms.process = false;
if( response.data.redirect ){
console.log(123);
router.push( { name: response.data.redirect } );
}
})
.catch(function (error) {
console.log(error.response.data);
如果我删除router.push-没有错误。 但是使用router.go我在console.log(error.response.data)行中出现错误:
我无法理解如何修复该错误
答案 0 :(得分:0)
我应该使用self。$ router.push而不是router.push