[Vuejs]-How can i make few children dynamic routes?

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

Leave a comment