Add:Authors page #618

This commit is contained in:
advplyr
2023-03-02 17:59:11 -06:00
parent 322f7d75dd
commit a81f50878e
3 changed files with 71 additions and 13 deletions
+8 -8
View File
@@ -101,15 +101,15 @@ export default {
icon: 'collections_bookmark',
iconClass: 'text-xl',
text: 'Collections'
},
{
to: '/bookshelf/authors',
routeName: 'bookshelf-authors',
iconPack: 'abs-icons',
icon: 'authors',
iconClass: 'text-2xl',
text: 'Authors'
}
// {
// to: '/bookshelf/authors',
// routeName: 'bookshelf-authors',
// iconPack: 'abs-icons',
// icon: 'authors',
// iconClass: 'text-2xl pb-px',
// text: 'Authors'
// }
]
}
+2
View File
@@ -66,6 +66,8 @@ export default {
return 'Collections'
} else if (this.page === 'playlists') {
return 'Playlists'
} else if (this.page === 'authors') {
return 'Authors'
}
return ''
},