Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

axios post nuxt

this.$axios.post('insert', {
          name: this.name, 
          email: this.email,
          password: this.password 
})
.then(function (response) {
    console.log(response);
})
.catch(function (error) {
    console.log(error);
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #axios #post #nuxt
ADD COMMENT
Topic
Name
1+7 =