오식랜드
[vue / nuxt] nuxt에서 cookie set, get하기 본문
반응형
라이브러리 설치
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');
반응형
'dev-log > vue·nuxt.js' 카테고리의 다른 글
scss 변수파일 전역에 import하기 (0) | 2022.07.13 |
---|---|
nuxt에서 기종 구별하기 (0) | 2022.07.13 |
[vue] vue awesome swiper 현재 index값 찾기 (0) | 2022.05.19 |
[vue, nuxt] 형제 컴포넌트간 데이터 전송 (0) | 2022.05.13 |
[nuxt/scss] scss 변수 저장 파일을 전역에 import하기 (0) | 2022.05.12 |
Comments