[Vuejs]-Vue.js and laravel 5.2, storing data to db

2👍

Just as one final tidbit, you don’t need to do the name:this.messageData.name thing if you did this:

sendmessage: function(messageData) {
        this.$http.post('contact', this.messageData)
                .then(function() {
                    console.log('success ');
                })
                .catch(function() {
                    console.log('error');
                });
    }
👤Jeff

Leave a comment