add album explorer

This commit is contained in:
geoffrey45
2021-12-10 18:34:34 +03:00
parent 0fa55eeeae
commit aed2c74975
8 changed files with 248 additions and 68 deletions
+6
View File
@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from "vue-router";
import Home from "../views/Home.vue";
import FolderView from "../views/FolderView.vue";
import PlaylistView from "../views/PlaylistView.vue";
import AlbumsExplorer from "../views/AlbumsExplorer.vue";
const routes = [
{
@@ -18,6 +19,11 @@ const routes = [
path: "/playlist",
name: "PlaylistView",
component: PlaylistView,
},
{
path: "/albums",
name: "AlbumsExplorer",
component: AlbumsExplorer,
}
];