feat: 增加全部作品页 & 小说搜索

This commit is contained in:
xiongxiaoyang
2022-05-16 13:08:19 +08:00
parent 3681261de8
commit f2dad69e97
7 changed files with 324 additions and 28 deletions

View File

@ -20,6 +20,11 @@ const router = createRouter({
name: 'newsContent',
component: () => import('@/views/Home')
},
{
path: '/bookClass',
name: 'bookClass',
component: () => import('@/views/BookClass')
},
{
path: '/book/:id',
name: 'book',
@ -29,7 +34,7 @@ const router = createRouter({
{
path: '/chapterList/:bookId',
name: 'chapterList',
component: () => import('@/views/BookChapterList')
component: () => import('@/views/ChapterList')
},
{