mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
27 lines
519 B
TypeScript
27 lines
519 B
TypeScript
import type { RouteConfigsTable } from "/#/index";
|
|
const IFrame = () => import("@/layout/frameView.vue");
|
|
|
|
const pptRouter: RouteConfigsTable = {
|
|
path: "/ppt",
|
|
redirect: "/ppt/index",
|
|
meta: {
|
|
icon: "ppt",
|
|
title: "PPT",
|
|
rank: 3
|
|
},
|
|
children: [
|
|
{
|
|
path: "/ppt/index",
|
|
name: "FramePpt",
|
|
component: IFrame,
|
|
meta: {
|
|
title: "PPT",
|
|
frameSrc: "https://pipipi-pikachu.github.io/PPTist/",
|
|
frameLoading: false
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default pptRouter;
|