2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/web/src/views/apps/phpmyadmin/route.ts
2024-10-17 21:20:26 +08:00

24 lines
501 B
Go

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