[Vuejs]-Google Sign in with client.js in Vue, authentication never saved to session storage

0👍

you can save google credentials and access them after refresh if you use cookies or session storage.
both are not deleted from browser on refresh.

nice vuejs2 plugin for this are Vuex – to handle states and vuex-persistedstate for saving data persistently on browser with local storage, session storage or cookies.

Leave a comment