RealityBoy 9b62d6ef1e
feat: add ample demos to @pureadmin/table (#379)
* feat: add ample demos to @pureadmin/table
2022-11-21 11:42:33 +08:00

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;