mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08:00
25 lines
502 B
Go
25 lines
502 B
Go
|
import { Layout } from '@/routers/constant';
|
||
|
|
||
|
const toolBoxRouter = {
|
||
|
sort: 7,
|
||
|
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: {
|
||
|
keepAlive: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export default toolBoxRouter;
|