How can I fetch query parameters in Vue.js?
E.g. http://somesite.com?test=yay.
http://somesite.com?test=yay
Can’t find a way to fetch or do I need to use pure JS or some lib
If your url looks something like this:
somesite.com/something/123
Where '123' is a parameter named 'id' (url like /something/:id), try with:
this.$route.params.id