mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 11:27:17 +08:00
24 lines
501 B
Go
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
|