Files
cunkebao_v3/nkebao/src/router/module/iframe.tsx
超级老白兔 fddda27ca8 FEAT => 本次更新项目为:
基础通信搞定了
2025-08-01 16:29:34 +08:00

13 lines
241 B
TypeScript

import IframeDebugPage from "@/pages/iframe";
// iframe 调试路由
const iframeRoutes = [
{
path: "/iframe",
element: <IframeDebugPage />,
auth: false, // 不需要认证,方便调试
},
];
export default iframeRoutes;