You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would make it easy for devs to create the user in their own data store in e.g. .then({ })
and errors in .catch({ })
so that means i should be able to do something like:
this.$auth.loginWith('facebook').then({// Create the user in my own data store, e.g. MySQL etc.}).catch({// If the user creation fails in own data store, remove the data in vuexawaitthis.$auth.logout()})
This feature request is available on Nuxt community (#c206)
The text was updated successfully, but these errors were encountered:
What problem does this feature solve?
This would make it easy for devs to create the user in their own data store in e.g.
.then({ })
and errors in
.catch({ })
so that means i should be able to do something like:
The text was updated successfully, but these errors were encountered: