I\'m new to vue now working with its router. I want to navigate to another page and I use the following code:
this.$router.push({path: \'/newLocation\', params:
Try using query instead of params
this.$router.push({path: '/newpath', query : { foo: "bar"}});
And in your component
console.log(this.$route.query.foo)