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

cron - how to properly run Python script with crontab on every system startup -

elasticsearch - Is the order of operations guaranteed in a bulk update? -

Slow performance first queries on SQL Azure -