vue-auth
vue-auth copied to clipboard
A simple light-weight authentication library for Vue.js
Do I need additional settings to use this plugin with pinia storage? I tried to figure it out myself, but unfortunately I couldn't get this plugin to work with pinia.
Using 4.1.7 version with v2, and this is setup: ``` import Vue from "vue"; import auth from "@websanova/vue-auth/dist/v2/vue-auth.common.js"; import driverAuthBearer from "@websanova/vue-auth/dist/drivers/auth/bearer.js"; import driverHttpVueResource from "@websanova/vue-auth/dist/drivers/http/vue-resource.1.x.js"; import driverRouterVueRouter from "@websanova/vue-auth/dist/drivers/router/vue-router.2.x.js";...
Hi I am working on a project with Vue3, where I need to support MFA. The support is there in the backend application and works like this I send a...
Hello, and thank you for the effort you put into this Project. I'm a beginner with Vue and tried to run your vue3 demo, unfortunately without success. ``` npm ERR!...
First of all, thank you for this awesome auth package! I did the following implementation for a based Laravel Passport API: **plugins/auth.js** ``` import { createAuth } from '@websanova/vue-auth/src/v3' import...
I just upgraded from v2 to v4. Now using the latest 4.1.4 I'm using this driver as per your v4 guide: `import driverOAuth2Facebook from '@websanova/vue-auth/dist/drivers/oauth2/facebook.esm.js';` Normal JWT auth works. Can't...
With this PR, you can now update the cookie expiration dynamically based on a function call. Addresses https://github.com/websanova/vue-auth/issues/669 Cookie can be setup as such: ``` cookie: { Path: '/', Secure:...
Currently, when the refresh interval comes up, it will go out to my refresh endpoint and bring back the token as needed. I'm putting the token into a Cookie. When...
Hi. I love this package and I've work a lot with it :). Thanks for that ! Last week I've started working in a new Vue 3 project. This is...
Hi, Thanks for this package, it is great, i love it. but i have to point out, the really big challenge with the documentation, its very challenging to use the...