修改密码组件

This commit is contained in:
禺狨
2023-03-24 14:56:23 +08:00
parent fb98e0986a
commit 6021adf463
9 changed files with 127 additions and 85 deletions

View File

@@ -32,7 +32,6 @@ const Init = lazy(async () => {
// 懒加载
const LoginPage = lazy(() => import("../pages/login"));
const IndexPage = lazy(() => import("../pages/index"));
const ChangePasswordPage = lazy(() => import("../pages/change-password"));
const routes: RouteObject[] = [
{
@@ -47,10 +46,6 @@ const routes: RouteObject[] = [
path: "/login",
element: <LoginPage />,
},
{
path: "/change-password",
element: <ChangePasswordPage />,
},
],
},
];