新增AI的功能与页面

This commit is contained in:
allen2fuc
2026-04-21 09:39:54 +08:00
parent 24278c263f
commit 52cdaf1e51
5 changed files with 13057 additions and 1 deletions
+2
View File
@@ -17,6 +17,7 @@ import SystemPage from "./pages/SystemPage";
import IOPage from "./pages/IOPage";
import VUPage from "./pages/VUPage";
import SelectPage from "./pages/SelectPage";
import AIPage from "./pages/AIPage";
function AppRouter() {
return (
@@ -33,6 +34,7 @@ function AppRouter() {
<Route path="/io" component={IOPage} />
<Route path="/vu" component={VUPage} />
<Route path="/select" component={SelectPage} />
<Route path="/ai" component={AIPage} />
<Route path="/404" component={NotFound} />
<Route component={NotFound} />
</Switch>