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
Post a Comment