minor changes to the albums explorer

This commit is contained in:
geoffrey45
2021-12-11 23:32:11 +03:00
parent 24741640ea
commit 9caeab9626
7 changed files with 330 additions and 2 deletions
+6
View File
@@ -3,6 +3,7 @@ import Home from "../views/Home.vue";
import FolderView from "../views/FolderView.vue";
import PlaylistView from "../views/PlaylistView.vue";
import AlbumsExplorer from "../views/AlbumsExplorer.vue";
import ArtistsExplorer from "../views/ArtistsExplorer.vue";
const routes = [
{
@@ -24,6 +25,11 @@ const routes = [
path: "/albums",
name: "AlbumsExplorer",
component: AlbumsExplorer,
},
{
path: "/artists",
name: "ArtistsExplorer",
component: ArtistsExplorer,
}
];