소스 검색

INFO: hydrate store for ssr app

master
valere 5 달 전
부모
커밋
51921c9213
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      stores/comment.ts

+ 1
- 1
stores/comment.ts 파일 보기

@@ -5,7 +5,7 @@ export const useCommentStore = defineStore('comment', {
state: () => ({
comment: useLocalStorage('comment', [])
}),
hydrate(state, initialState) {
hydrate(state, initialState) { // as nuxt is in SSR localstorage is not available so we need to hydrate the app with data first
state.comment = useLocalStorage('comment', [])
},
actions: {


불러오는 중...
취소
저장