setup artist page boilerplate code

This commit is contained in:
geoffrey45
2022-11-21 21:59:24 +03:00
committed by Mungai Njoroge
parent f3c4f0310a
commit da852e72f3
7 changed files with 70 additions and 39 deletions
+6 -1
View File
@@ -72,6 +72,11 @@ const routes = [
name: "ArtistsView",
component: () => import("@/views/ArtistsExplorer.vue"),
},
{
path: "/artists/:hash",
name: "ArtistView",
component: () => import("@/views/ArtistView"),
},
{
path: "/settings",
name: "SettingsView",
@@ -90,7 +95,7 @@ const routes = [
{
name: "NotFound",
path: "/:pathMatch(.*)",
component: () => import("../views/NotFound.vue"),
component: () => import("@/views/NotFound.vue"),
},
];