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

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

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

SonarQube Plugin for Jenkins does not find SonarQube Scanner executable -