[Vuejs]-How to programmatically go to the previous route in vue-router?

0πŸ‘

βœ…

To navigate to the parent route:

this.$router.push(this.$route.matched[1].parent.path)

This just works in my case.

Leave a comment