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