BinarCode/vue-form-wizard

Add one more step with message, after sending

marcelloinfoweb opened this issue · 1 comments

how could i show a personalized message by adding one more step?

Not sure if this is the correct way to do it. But I used the following approach to achieve the same as given below.

onComplete() {
axios.post('--complete_path--', {
id: <>
}).then((response) => {
window.location = '--path to the new message--';
}).catch((error) => {
console.log(error);
})
}
},