Fixed routing

This commit is contained in:
Johnny Silverhand 2021-01-31 11:45:06 -05:00
parent f29fa0ebd9
commit d3049e2570
1 changed files with 15 additions and 14 deletions

View File

@ -28,12 +28,12 @@ const routes = [
}
},
{
path: 'tracklist/:type/:id',
path: '/tracklist/:type/:id',
name: 'Tracklist',
component: Tracklist
},
{
path: 'artist/:id',
path: '/artist/:id',
name: 'Artist',
component: Artist,
meta: {
@ -41,22 +41,22 @@ const routes = [
}
},
{
path: 'album/:id',
path: '/album/:id',
name: 'Album',
component: Tracklist
},
{
path: 'playlist/:id',
path: '/playlist/:id',
name: 'Playlist',
component: Tracklist
},
{
path: 'spotify-playlist/:id',
path: '/spotify-playlist/:id',
name: 'Spotify Playlist',
component: Tracklist
},
{
path: 'charts',
path: '/charts',
name: 'Charts',
component: Charts,
meta: {
@ -64,7 +64,7 @@ const routes = [
}
},
{
path: 'favorites',
path: '/favorites',
name: 'Favorites',
component: Favorites,
meta: {
@ -72,37 +72,37 @@ const routes = [
}
},
{
path: 'errors',
path: '/errors',
name: 'Errors',
component: Errors
},
{
path: 'link-analyzer',
path: '/link-analyzer',
name: 'Link Analyzer',
component: LinkAnalyzer
},
{
path: 'about',
path: '/about',
name: 'About',
component: About
},
{
path: 'info-arl',
path: '/info-arl',
name: 'ARL',
component: InfoArl
},
{
path: 'info-spotify',
path: '/info-spotify',
name: 'Spotify Features',
component: InfoSpotifyFeatures
},
{
path: 'settings',
path: '/settings',
name: 'Settings',
component: Settings
},
{
path: 'search',
path: '/search',
name: 'Search',
component: Search,
meta: {
@ -165,3 +165,4 @@ router.beforeEach((to, from, next) => {
})
export default router