mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
26 lines
523 B
TypeScript
26 lines
523 B
TypeScript
import { ppt } from "@/router/enums";
|
|
const IFrame = () => import("@/layout/frame.vue");
|
|
|
|
export default {
|
|
path: "/ppt",
|
|
redirect: "/ppt/index",
|
|
meta: {
|
|
icon: "ri:file-ppt-2-line",
|
|
title: "PPT",
|
|
rank: ppt
|
|
},
|
|
children: [
|
|
{
|
|
path: "/ppt/index",
|
|
name: "FramePpt",
|
|
component: IFrame,
|
|
meta: {
|
|
title: "PPT",
|
|
keepAlive: true,
|
|
frameSrc: "https://pipipi-pikachu.github.io/PPTist/",
|
|
frameLoading: false
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|