From 51921c9213c3925b35ae9f0b24ac7a39f0d6fbce Mon Sep 17 00:00:00 2001 From: valere Date: Thu, 10 Oct 2024 15:47:13 +0200 Subject: [PATCH] INFO: hydrate store for ssr app --- stores/comment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stores/comment.ts b/stores/comment.ts index 52e705b..204cc27 100644 --- a/stores/comment.ts +++ b/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: {