mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08:00
23 lines
456 B
Go
23 lines
456 B
Go
import { Layout } from '@/routers/constant';
|
|
|
|
const toolBoxRouter = {
|
|
sort: 9,
|
|
path: '/toolbox',
|
|
component: Layout,
|
|
redirect: '/toolbox',
|
|
meta: {
|
|
icon: 'p-toolbox',
|
|
title: 'menu.toolbox',
|
|
},
|
|
children: [
|
|
{
|
|
path: '/toolbox',
|
|
name: 'ToolBox',
|
|
component: () => import('@/views/toolbox/index.vue'),
|
|
meta: {},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default toolBoxRouter;
|