maxkb/ui/src/router/modules/paragraph-shared-system.ts
wangdan-fit2cloud 189564de21 feat: api
2025-06-16 19:02:08 +08:00

18 lines
574 B
TypeScript

const ParagraphRouter = {
path: '/paragraph/system/:id/:documentId/shared',
name: 'ParagraphSharedSystem',
meta: { title: 'common.fileUpload.document', activeMenu: '/knowledge', breadcrumb: true },
component: () => import('@/layout/layout-template/SimpleLayout.vue'),
hidden: true,
children: [
{
path: '/paragraph/system/:id/:documentId/shared',
name: 'ParagraphIndexSharedSystem',
meta: { activeMenu: '/knowledge' },
component: () => import('@/views/shared/paragraph-shared/index.vue'),
},
],
}
export default ParagraphRouter