Vue: Pass Arbitrary Data to a Vue Route
Doing a programmatic route change using Vue Router is very straight forward: this.$router.push({name: 'home'}) // Triggers the 'home' route However, I couldn't find the "correct" way to pass arbitrary data to this route. My use case just didn't make...

