[Vuejs]-Share JWT Across Multiple Vue.js Apps

0👍

If you don’t want to use cookies, each app has to request the token from the backend(s). If there is more than one backend, the question becomes how to share the jwt between the backends. One solution to this problem is called SSO.

Otherwise, cookies are excellent for sharing data between sessions on a domain.

Leave a comment