[Vuejs]-How to redirect page after submit form success with Nuxtjs

0👍

Inside your component you have access to this.$router

So you can easily do:

this.$router.push('/')

0👍

I think you’re looking for programmatic navigation.

this.$router.push('/contact/success')

in your success callback on your axios request

Leave a comment