ソースを参照

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: {


読み込み中…
キャンセル
保存