vue.js - Handle callback urls in Vue router -


i use stamplay baas, authenticate user, redirect

/auth/v1/auth0/connect

after, user authenticate.. stamplay call app with

/login/callback?jwt=abc.123.xyz

how can authenticate user after stamplay call app?

tried

i router config try..

'/login/callback': {   component: vue.extend({     ready() {       // ...  not called!! never       console.log('... ready .. ')       console.log(this.$route.query.jwt)     }   }) } 

try access this.$route.query.jwt within component.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -