2021-10-13 13:14:28 +08:00

28 lines
544 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,
rank: 1
},
children: [
{
path: "/flowChart/index",
name: "flowChart",
component: () => import("/@/views/flow-chart/index.vue"),
meta: {
title: "message.hsflowChart",
showLink: true
}
}
]
};
export default flowChartRouter;