Skip to content

Commit

Permalink
fix: 完善路由
Browse files Browse the repository at this point in the history
  • Loading branch information
wangrongding committed Mar 3, 2024
1 parent 5461b8d commit 00afc3c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/router/modules/audio-and-video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,22 @@ export const audioAndVideo: RouteRecordRaw[] = [
},
],
},
{
path: '/audio-and-video/web-audio-video',
meta: { title: '音视频处理', type: 'multiple' },
children: [
{
path: '/audio-and-video/web-audio-video/m3u8-player',
meta: { title: 'm3u8-player' },
component: () => import('@/page/web-audio-video/m3u8-player.vue'),
},
// {
// path: '/audio-and-video/web-audio-video/m3u8-downloader',
// meta: { title: 'm3u8-downloader' },
// component: () => import('@/page/web-audio-video/m3u8-downloader.vue'),
// },
],
},
],
},
]

0 comments on commit 00afc3c

Please sign in to comment.