add header to album view

This commit is contained in:
geoffrey45
2021-12-12 00:24:35 +03:00
parent 9caeab9626
commit 8afa044813
3 changed files with 130 additions and 0 deletions
+8
View File
@@ -2,7 +2,10 @@ 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";
import AlbumView from "../views/AlbumView.vue";
import ArtistsExplorer from "../views/ArtistsExplorer.vue";
const routes = [
@@ -26,6 +29,11 @@ const routes = [
name: "AlbumsExplorer",
component: AlbumsExplorer,
},
{
path: "/albums/:id",
name: "AlbumView",
component: AlbumView,
},
{
path: "/artists",
name: "ArtistsExplorer",