Add bookshelf list view

This commit is contained in:
advplyr 2022-04-07 19:59:23 -05:00
parent 119bfd6c98
commit 105451ebf1
8 changed files with 471 additions and 255 deletions

View file

@ -1,5 +1,6 @@
export const state = () => ({
itemDownloads: []
itemDownloads: [],
bookshelfListView: false
})
export const getters = {
@ -41,5 +42,8 @@ export const mutations = {
},
removeItemDownload(state, id) {
state.itemDownloads = state.itemDownloads.filter(i => i.id != id)
},
setBookshelfListView(state, val) {
state.bookshelfListView = val
}
}