mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
basically done (at least the essential part)
This commit is contained in:
@@ -23,6 +23,24 @@ const router = createRouter( {
|
||||
'title': 'App'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/share/:name',
|
||||
name: 'share',
|
||||
component: () => import( '../views/RemoteView.vue' ),
|
||||
meta: {
|
||||
'authRequired': false,
|
||||
'title': 'Share'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/fancy/:name',
|
||||
name: 'fancy',
|
||||
component: () => import( '../views/ShowcaseView.vue' ),
|
||||
meta: {
|
||||
'authRequired': false,
|
||||
'title': 'Fancy View'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/:pathMatch(.*)*',
|
||||
name: 'NotFound',
|
||||
|
||||
Reference in New Issue
Block a user