您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

25 行
629 B

  1. import { defineStore } from 'pinia'
  2. import { useLocalStorage } from '@vueuse/core'
  3. export const useCommentStore = defineStore('comment', {
  4. state: () => ({
  5. comment: useLocalStorage('comment', [])
  6. }),
  7. hydrate(state, initialState) {
  8. state.comment = useLocalStorage('comment', [])
  9. },
  10. actions: {
  11. add(newComment) {
  12. this.comment.push(newComment)
  13. useLocalStorage('comment', this.comment)
  14. },
  15. },
  16. getters: {
  17. orderedComment: (state) => {
  18. return (filmId) => {
  19. return state.comment.filter(comment => comment.filmId === filmId).sort((a, b) => b.added - a.added)
  20. }
  21. }
  22. }
  23. })