When dealing with Vue.js callback URLs, I encounter situations where I need to extract a parameter value from the URL. For instance, consider this return URL:
http://localhost:8080/#/sucesspage?encryteddata=abdeshfkkilkalidfel&9a
I attempted to retrieve the parameter value using this.$route.query.encryteddata
, but it returned null.
Is there an alternative method to successfully obtain the param value in Vue.js?