mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
30 lines
603 B
TypeScript
30 lines
603 B
TypeScript
import Layout from "/@/layout/index.vue";
|
|
|
|
const flowChartRouter = {
|
|
path: "/flowChart",
|
|
name: "flowChart",
|
|
component: Layout,
|
|
redirect: "/flowChart/index",
|
|
meta: {
|
|
icon: "el-icon-set-up",
|
|
title: "message.hsflowChart",
|
|
showLink: true,
|
|
savedPosition: true,
|
|
rank: 1,
|
|
},
|
|
children: [
|
|
{
|
|
path: "/flowChart/index",
|
|
name: "flowChart",
|
|
component: () => import("/@/views/flow-chart/index.vue"),
|
|
meta: {
|
|
title: "message.hsflowChart",
|
|
showLink: true,
|
|
savedPosition: true,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default flowChartRouter;
|