feat: 添加新的歌手详情页面

This commit is contained in:
alger
2025-03-29 20:52:50 +08:00
parent 2924ad6c18
commit dfb8f55fba
9 changed files with 389 additions and 38 deletions
+11
View File
@@ -31,6 +31,17 @@ const otherRouter = [
back: true
},
component: () => import('@/views/user/detail.vue')
},
{
path: '/artist/detail/:id',
name: 'artistDetail',
meta: {
title: '歌手详情',
keepAlive: true,
showInMenu: false,
back: true
},
component: () => import('@/views/artist/detail.vue')
}
];
export default otherRouter;