mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-04 13:04:13 +08:00
25 lines
511 B
Go
25 lines
511 B
Go
![]() |
import { Layout } from '@/routers/constant';
|
||
|
|
||
|
const databaseRouter = {
|
||
|
sort: 4,
|
||
|
path: '/database',
|
||
|
component: Layout,
|
||
|
redirect: '/database',
|
||
|
meta: {
|
||
|
icon: 'p-database',
|
||
|
title: 'menu.database',
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/database',
|
||
|
name: 'Database',
|
||
|
component: () => import('@/views/database/index.vue'),
|
||
|
meta: {
|
||
|
keepAlive: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export default databaseRouter;
|