mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-14 02:24:44 +08:00
22 lines
465 B
Go
22 lines
465 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: {},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default databaseRouter;
|