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

A simple Vue.js plugin for handling browser cookies

Results 24 vue-cookies issues
Sort by recently updated
recently updated
newest added

Fix #66 As mentioned in #66, I think we should provide a way to let us determine whether we should encode cookie's value or not. And we should compatible with...

When we set the cookie to expire in 365 days ``` this.$cookies.set('cookies:analytical', this.conversionTracking, '365d') ``` Firefox Developer loads it set as `session`. This whereas Chrome does load the 365 days....

I used this library to add cookie value. Recently I found that under localhost(npm run vue-cli-service serve), I cannot add a name-value pair into cookie storage. This is my global...

I'm working on some legacy code one of my ex-colleague left me. Inside a router guard, he added this check. `window.$cookies.get("token-iotbuilding")` He manually sets the cookie after he calls the...

Hello cmp-cc Please implement vue-cookies support with nuxt module https://nuxtjs.org/guide/modules/ Thank you so much.

Related with #56 Whenever I create new cookie with SameSite=None and Secure inside Iframe then I cannot delete it. I call: this.$cookies.remove("cookieName") no effect. Tested on Chrome and Firefox.

Hello I will add support nuxt module and add vue install option. Please review and PR. Thank

I've read how to use `vue-cookies` in composition api. int that place: ![Screenshot_1](https://github.com/cmp-cc/vue-cookies/assets/83240328/fe7bd1a6-2b8b-4b6a-9b3c-677bdcf84c03) Then i use inject for using $cookie in composition api, but i received this bug: ![image](https://github.com/cmp-cc/vue-cookies/assets/83240328/def832ca-2124-4258-a180-65c73ac00197) What...

Hello, I use vue-cookies TypeScript and analyser says that injected cookies could be undefined. ```js const cookies = inject('$cookies') cookies.set('my_cookie', btoa(cookieVal)) ``` The warning got easily suppressed with optional chaining...

Type declaration file seemed to be outdated because there is no property named `VueCookies` exists inside default export. Instead, members in interface `VueCookies` lives in the default export. Therefore, I...