[Vuejs]-Vue js cookies is undefined

0๐Ÿ‘

I have never used this library. But looking at npm: https://www.npmjs.com/package/vue-cookies

You have to import the library and use the plugin.

import VueCookies from 'vue-cookies';

Vue.use(VueCookies)

***I assume that you have installed the library previously.

Leave a comment