vue-form-wizard icon indicating copy to clipboard operation
vue-form-wizard copied to clipboard

Add one more step with message, after sending

Open marcelloinfoweb opened this issue 5 years ago • 1 comments

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

marcelloinfoweb avatar Jun 11 '20 18:06 marcelloinfoweb

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); }) } },

achintharodrigo avatar Apr 11 '21 23:04 achintharodrigo