Skip to content

Instantly share code, notes, and snippets.

@eralpozcan
Created February 4, 2022 16:55
Show Gist options
  • Save eralpozcan/a819d8ed42a4cfbc21c89715aa369546 to your computer and use it in GitHub Desktop.
Save eralpozcan/a819d8ed42a4cfbc21c89715aa369546 to your computer and use it in GitHub Desktop.
await axios
.post(process.env.VUE_APP_API + "/account/register", userData.user)
.then((response) => {
console.log(response);
} catch (error) {
console.error(error);
}
})
.catch((err) => {
console.error(err);
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment