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