vue-auth icon indicating copy to clipboard operation
vue-auth copied to clipboard

A simple light-weight authentication library for Vue.js

Results 26 vue-auth issues
Sort by recently updated
recently updated
newest added

Bumps [axios](https://github.com/axios/axios) from 0.20.0 to 1.6.0. Release notes Sourced from axios's releases. Release v1.6.0 Release notes: Bug Fixes CSRF: fixed CSRF vulnerability CVE-2023-45857 (#6028) (96ee232) dns: fixed lookup function decorator...

dependencies

Hey I have this structure ``` user1 = { name: 'John', department: ['tech', 'operations'], tech: { role: 'manager' } } user2 = { name: 'Steve', department: ['hr'], hr: { role:...

Hi, my issue its more of a question than a bug. Is it possible to have a user authenticate with multiple accounts, and then be able to retrieve those credentials?...

Currently, if you have expired impersonate token and you get 401 server response for refresh user, you'll stuck in semi-impersonating mode. E.g. if you enter any valid credentials without refreshing...

Ive got the following path in my router.js ``` { path: '/organisations/:organisation_id(\\d+)', name: 'organisation', component: organisationComponent, meta: { auth: { roles: ['full_admin'], rolesKey: 'admin_privileges', } } }, ``` If I...

https://github.com/websanova/vue-auth/blob/1b3fba4c7b55b0ca4c09b1dc25ac1e1a033a1bdf/types/index.d.ts#L148 The options should be optional. ``` ERROR(vue-tsc) Expected 1 arguments, but got 0. FILE /home/foo/bar/app/src/pages/usergroup/List.vue:175:13 173 | function onUsergroupUpdate () { 174 | void getUsergroups() > 175 | void...