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
As of this date, the correct way according to the dynamic routing docs is:
this.$route.params.yourProperty
instead of
this.$route.query.yourProperty