Add: Library list view

This commit is contained in:
advplyr
2021-11-19 10:29:26 -06:00
parent fd79baed61
commit b6dd37b7f6
3 changed files with 30 additions and 8 deletions
+5 -1
View File
@@ -16,7 +16,8 @@ export const state = () => ({
showReader: false,
downloadFolder: null,
mediaScanResults: {},
showSideDrawer: false
showSideDrawer: false,
bookshelfView: 'grid'
})
export const getters = {
@@ -104,5 +105,8 @@ export const mutations = {
},
setShowSideDrawer(state, val) {
state.showSideDrawer = val
},
setBookshelfView(state, val) {
state.bookshelfView = val
}
}