I am using vue-cookies for my vue.js project. I need to set the secure and HttpOnly attributes
This is the config
Vue.$cookies.config('7d', '', '', true)
according to the doc https://www.npmjs.com/package/vue-cookies but when setting the cookie, I can see in DevTools that the secure attribute is set, but not the HttpOnly
I also tried setting the cookie like this
this.$cookies.set('login', { userData: response }, '7d', null, null, true)
but same result.