반응형
Notice
Recent Posts
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Today
Total
관리 메뉴

오식랜드

[vue / nuxt] nuxt에서 cookie set, get하기 본문

dev-log/vue·nuxt.js

[vue / nuxt] nuxt에서 cookie set, get하기

개발하는 오식이 2022. 6. 10. 16:53
반응형

라이브러리 설치

npm install cookie-universal-nuxt --save

nuxt.config.js

modules: [
    'cookie-universal-nuxt',
],

method

 

const data = {
    anything: 'you want',
}

this.$cookies.set('thing', data, {
    path: '/',
    maxAge: 60 * 60 * 24 * 7
});

this.$cookies.get('thing');
반응형
Comments