This commit is contained in:
Henry Jameson 2026-08-31 17:32:31 +03:00
commit cdaff8d8e0
3 changed files with 19 additions and 17 deletions

View file

@ -49,6 +49,7 @@ export const useListsStore = defineStore('lists', {
},
setLists(value) {
this.allLists = value
this.allListsObject = Object.fromEntries(value.map((list) => [list.id, list]))
},
async createList({ title }) {
return await createList({