maxkb/ui/src/router/modules/3tool.ts
shaohuzhang1 ec66640616
feat: Button Permission by workspace role (#3317)
Co-authored-by: zhangzhanwei <zhanwei.zhang@fit2cloud.com>
2025-06-19 20:07:40 +08:00

18 lines
410 B
TypeScript

const ModelRouter = {
path: '/tool',
name: 'tool',
meta: { title: 'views.tool.title' },
redirect: '/tool',
component: () => import('@/layout/layout-template/SimpleLayout.vue'),
children: [
{
path: '/tool',
name: 'tool-index',
meta: { title: '工具主页', activeMenu: '/tool' },
component: () => import('@/views/tool/index.vue')
}
]
}
export default ModelRouter