feat(bookContent): 新增小说内容页

This commit is contained in:
xiongxiaoyang
2022-05-15 14:02:12 +08:00
parent 1c344bd329
commit df89986d77
5 changed files with 314 additions and 7 deletions

View File

@ -25,6 +25,12 @@ const router = createRouter({
name: 'book',
component: () => import('@/views/Book')
},
{
path: '/book/:id/:chapterId',
name: 'bookContent',
component: () => import('@/views/BookContent')
}
]
})