feat: 增加作家注册功能

This commit is contained in:
xiongxiaoyang
2022-05-29 15:24:24 +08:00
parent 9fe9a6a0e7
commit 6535af4038
12 changed files with 1287 additions and 70 deletions

View File

@ -67,7 +67,17 @@ const router = createRouter({
name: 'userSetup',
component: () => import('@/views/UserSetup')
}
},
{
path: '/author/register',
name: 'authorRegister',
component: () => import('@/views/author/Register')
},
{
path: '/author/book_list',
name: 'authorBookList',
component: () => import('@/views/author/BookList')
},
]
})