2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 04:37:17 +08:00
Files
panel/web/src/views/apps/postgresql/route.ts
2024-10-11 03:29:45 +08:00

24 lines
490 B
Go

import type { RouteType } from '~/types/router'
const Layout = () => import('@/layout/IndexView.vue')
export default {
name: 'postgresql',
path: '/apps/postgresql',
component: Layout,
isHidden: true,
children: [
{
name: 'apps-postgresql-index',
path: '',
component: () => import('./IndexView.vue'),
meta: {
title: 'PostgreSQL',
icon: 'mdi:database',
role: ['admin'],
requireAuth: true
}
}
]
} as RouteType