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