0👍
For parameterised routes use
this.$router.push({name: 'payouts', params: { pay_id: "SomeID"}});
Or
this.$router.push({path: '/newLocation/SomeID'});
for non parameterised route
this.$router.push({path: '/newLocation'});
- [Vuejs]-NuxtJS and Custom JS file
- [Vuejs]-Is it possible to use vue.js with wagtail stream-fields without using DRF?
Source:stackexchange.com