Skip to content

Commit

Permalink
test: test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Probe001 committed Jun 10, 2023
2 parents 539965d + 487b027 commit 9ddc584
Show file tree
Hide file tree
Showing 10 changed files with 1,588 additions and 28 deletions.
22 changes: 22 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,28 @@ const routes = [
name: 'StationListView',
component: () => import('@/views/passenger/StationListView.vue'),
},
// 하차 관련 검색 페이지
{
path: '/landingSearch',
name: 'busLandingSearchView',
component: () => import('@/views/passenger/landing/BusLandingSearchView.vue'),
},
{
path: '/keyboardLandingSearch/:keyword',
name: 'KeyboardLandingSearchView',
component: () => import('@/views/passenger/landing/KeyboardLandingSearchView.vue'),
},
{
path: '/landingStopBusList/:arsId/:stId',
name: 'LandingStopBusListView',
props: true,
component: () => import('@/views/passenger/landing/LandingStopBusListView.vue'),
},
{
path: '/landingStationList/:busRouteId',
name: 'LandingStationListView',
component: () => import('@/views/passenger/landing/LandingStationListView.vue'),
},
];

const router = createRouter({
Expand Down
Loading

0 comments on commit 9ddc584

Please sign in to comment.