Просмотр исходного кода

INFO: hydrate store for ssr app

master
valere 5 месяцев назад
Родитель
Сommit
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: {


Загрузка…
Отмена
Сохранить