"Navigating to current location ("/adminHome/productsList") is not allowed", stack: "Error↵

在vue中遇到了这样的问题。

原因是因为在A界面中进行路由改变的跳转,而跳转的目的地页还是A界面,修改一下即可。

  this.$axios.post(api,this.updateDataPro).then((response)=>{
                console.log(response.data.code)
                if(response.data.code == '200'){
                  this.$alert("修改成功","提示",{
                    confirmButtonText:'确定',
                    // callback:action=>{
                    //   this.$router.push({path:"/adminHome/productsList"})
                    // }
                  })

如图所示注释掉那一行即可。

你可能感兴趣的:(Vue)