feat: 修改音乐列表为页面,优化专辑和歌单详情加载逻辑,支持通过路由跳转展示音乐列表

This commit is contained in:
alger
2025-05-07 22:36:52 +08:00
parent 3ca7e9a271
commit e2527c3fb8
15 changed files with 1208 additions and 259 deletions
+11
View File
@@ -53,6 +53,17 @@ const otherRouter = [
back: true
},
component: () => import('@/views/bilibili/BilibiliPlayer.vue')
},
{
path: '/music-list/:id?',
name: 'musicList',
meta: {
title: '音乐列表',
keepAlive: false,
showInMenu: false,
back: true
},
component: () => import('@/views/music/MusicListPage.vue')
}
];
export default otherRouter;