1👍
try this.$router.push()
https://router.vuejs.org/guide/essentials/named-routes.html
submitMobile: function() {
this.$http.post('/customer/send-sms', this.formData).then(function(response) {
this.$router.push({
name: "route_name", // tis route name you need to add
query: { mobile: this.mobile },
});
}, function() {
console.log('failed');
});
}
Source:stackexchange.com