SeatSelection page

This commit is contained in:
2024-10-04 20:15:16 +02:00
parent 519fa210e9
commit a676ce3d86
22 changed files with 316 additions and 76 deletions

View File

@@ -8,6 +8,7 @@ import LocationsPage from "@/pages/locations/locationsPage/index.vue"
import SearchPage from "@/pages/events/searchPage/index.vue"
import BandDetailPage from "@/pages/events/bandDetailPage/index.vue"
import LocationDetailPage from "@/pages/locations/locationDetailPage/index.vue"
import TicketOrderPage from "@/pages/events/ticketOrderPage/index.vue"
const routes = [
{ path: "/", component: HomePage },
@@ -15,6 +16,7 @@ const routes = [
{ path: '/locations', component: LocationsPage },
{ path: '/locations/:locationName', component: LocationDetailPage },
{ path: '/bands/:bandName', component: BandDetailPage },
{ path: '/concert/:id', component: TicketOrderPage },
{ path: '/events', component: EventsPage },
{ path: '/search', component: SearchPage },
...accountRoutes,