add a blank settings view

- use for loop to render l-sidebar content
- add current track image on l-sidebar
- other minor changes
This commit is contained in:
geoffrey45
2022-02-11 11:53:46 +03:00
parent e7741937a3
commit 15d5e1476a
12 changed files with 128 additions and 88 deletions
+9 -3
View File
@@ -7,6 +7,7 @@ import AlbumsExplorer from "../views/AlbumsExplorer.vue";
import AlbumView from "../views/AlbumView.vue";
import ArtistsExplorer from "../views/ArtistsExplorer.vue";
import SettingsView from "../views/SettingsView.vue";
const routes = [
{
@@ -30,7 +31,7 @@ const routes = [
},
{
path: "/albums",
name: "AlbumsExplorer",
name: "AlbumsView",
component: AlbumsExplorer,
},
{
@@ -40,9 +41,14 @@ const routes = [
},
{
path: "/artists",
name: "ArtistsExplorer",
name: "ArtistsView",
component: ArtistsExplorer,
}
},
{
path: "/settings",
name: "SettingsView",
component: SettingsView,
},
];
const router = createRouter({