[Vuejs]-Redirect after axios method submit on successful result

2๐Ÿ‘

โœ…

If you are using Vue router, then in your axios then block, you could do something like:

.then(() => this.$router.push('/verify-path'))

If not, there are lots of different ways to achieve the same with vanilla javascript.

Leave a comment