Add:Playlists

This commit is contained in:
advplyr
2022-12-03 15:20:27 -06:00
parent 6d9e902fe7
commit b62ce27487
13 changed files with 404 additions and 16 deletions
+8 -8
View File
@@ -84,14 +84,14 @@ export default {
iconClass: 'text-xl',
text: 'Collections'
},
{
to: '/bookshelf/authors',
routeName: 'bookshelf-authors',
iconPack: 'abs-icons',
icon: 'authors',
iconClass: 'text-2xl pb-px',
text: 'Authors'
},
// {
// to: '/bookshelf/authors',
// routeName: 'bookshelf-authors',
// iconPack: 'abs-icons',
// icon: 'authors',
// iconClass: 'text-2xl pb-px',
// text: 'Authors'
// },
{
to: '/bookshelf/playlists',
routeName: 'bookshelf-playlists',
+2
View File
@@ -64,6 +64,8 @@ export default {
return 'Series'
} else if (this.page === 'collections') {
return 'Collections'
} else if (this.page === 'playlists') {
return 'Playlists'
}
return ''
},