Creating whole Band details page

This commit is contained in:
2024-09-29 16:56:43 +02:00
parent a6ca7eedde
commit 907e0082e1
16 changed files with 294 additions and 111 deletions

View File

@@ -1,11 +1,11 @@
import ToursPage from "@/pages/shows/toursPage/index.vue";
import BandsPage from "@/pages/shows/bandsPage/index.vue";
import LocationsPage from "@/pages/shows/locationsPage/index.vue"
import SearchPage from "@/pages/shows/searchPage/index.vue"
import BandDetailPage from "@/pages/shows/bandDetailPage/index.vue"
export const showRoutes = [
{ path: '/shows/tours', component: ToursPage },
{ path: '/shows/bands', component: BandsPage },
{ path: '/shows/locations', component: LocationsPage },
{ path: '/shows/search', component: SearchPage },
{ path: '/shows/band/:bandName', component: BandDetailPage }
]