feat: 新增作家章节列表和章节发布

This commit is contained in:
xiongxiaoyang
2022-05-29 20:46:51 +08:00
parent 7f34045a82
commit f18746d8ff
9 changed files with 1533 additions and 17 deletions

View File

@ -82,6 +82,16 @@ const router = createRouter({
path: '/author/book_add',
name: 'authorBookAdd',
component: () => import('@/views/author/BookAdd')
},
{
path: '/author/chapter_list',
name: 'authorChapterList',
component: () => import('@/views/author/ChapterList')
},
{
path: '/author/chapter_add',
name: 'authorChapterAdd',
component: () => import('@/views/author/ChapterAdd')
}
]
})