onSignUp(user){
return axios.post(`/profile`, user)
.then((res)=>{
console.log("AXIOS: " + res);
})
.catch((err)=>{
console.log("AXIOS: " + err);
});
.then((res)=>{
console.log (res.data) - это и есть ответ сервера
}
onSignUp(user){
axios.post(`/profile`, user)
.then((res)=>{
console.log("AXIOS: " + res);
if(res.data == "все окей"){
alert('точняк')
document.location.href = 'urlafterautorization'
}
})
.catch((err)=>{
console.log("AXIOS: " + err);
});