Merge pull request '更改登录懒加载' (#26) from dev_wenhua_plus into dev

Reviewed-on: http://git.feashow.cn/wenhua/fateverse-react/pulls/26
This commit is contained in:
wenhua
2023-11-20 14:01:41 +00:00

View File

@@ -46,7 +46,7 @@ const currentRouter: Array<route> = [
},
{
path: '/login',
element: lazyLoad('login')
element: <Suspense fallback={<Loading />}>{lazyLoad('login')}</Suspense>
}
]