Skip to content

Commit

Permalink
BarDetailView in router einbinden
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar73a committed Jan 8, 2024
1 parent f0771d4 commit 2660c5e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ const router = createRouter({
path: '/verleih/:id',
name: 'verleih-detail',
component: () => import('../views/VerleihDetailView.vue')
}, {
path: '/bar',
name: 'bar',
component: () => import('../views/BarListView.vue')
},
{
path: '/bar/:id',
name: 'bar-detail',
component: () => import('../views/BarDetailView.vue')
}
]
})
Expand Down

0 comments on commit 2660c5e

Please sign in to comment.