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

A simplistic session plugin for VueJS backed by SessionStorage and LocalStorage

Results 17 vue-session issues
Sort by recently updated
recently updated
newest added

Hey there! I really like this plugin! Are you still maintaining it? I am attempting to build a MEVN stack demo for the VueStacks Initiative (https://github.com/jsfanatik) demonstrating vue-session in an...

Hello there, I'm using vue-session to handle the session in my application, exactly as you showed in your examples. I'm bumping into some bugs though: 1) If I destroy the...

How to setup lifetime for session?

Thanks a lot :( ` await axios.post('/api/v1.0/accounts/login/', { phone, password }, { headers: {'Access-Control-Allow-Origin': '*'} }).then(function (response) { console.log(response.status) if(response.status == 200 && response.data.access_token != '') { this.$session.start() this.$session.set('token', response.data.access_token)...

Hello, I am using vue 2.0 with laravel 5.4 . I have seperated my vue js routes from app.js to a new file route.js and imported inside app.js. i can't...

Minor refacto using `id` instead of re-fetching `all`. Allow to not redefining `session-id`.

Hi! Love this package! Just ran into one little issue. When in Safari Private I get ```QuotaExceededError: QuotaExceededError``` due to Safari in private mode not allow localStorage. Have you run...