mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
perf: 增加自定义组件示例 Merge remote-tracking branch 'origin/main' refactor: fs-bpmn refactor: integration fs-bpmn refactor: 集成fs-bpmn refactor: refactor: 优化i18n
23 lines
437 B
TypeScript
23 lines
437 B
TypeScript
export const integrationResources = [
|
|
{
|
|
title: "集成",
|
|
name: "integration",
|
|
path: "/integration",
|
|
redirect: "/integration/bpmn",
|
|
meta: {
|
|
icon: "ion:apps-sharp"
|
|
},
|
|
children: [
|
|
{
|
|
title: "FsBpmn",
|
|
name: "FsBpmn",
|
|
path: "/integration/bpmn",
|
|
component: "/integration/bpmn/index.vue",
|
|
meta: {
|
|
icon: "ion:disc-outline"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|