feat: 删除路由拦截器,添加二级路由

This commit is contained in:
landaiqing
2024-07-02 13:59:15 +08:00
parent b1f78bb399
commit fd0510c6af
18 changed files with 243 additions and 102 deletions

View File

@@ -0,0 +1,11 @@
/** @format */
import { lazy } from "react";
const MainFile = lazy(
() =>
new Promise((resolve: any) => {
setTimeout(() => resolve(import("@/components/Main/File")), 500);
}),
);
export default MainFile;