mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 17:07:18 +08:00
23 lines
442 B
Go
23 lines
442 B
Go
import type { RouteType } from '~/types/router'
|
|
|
|
const Layout = () => import('@/layout/IndexView.vue')
|
|
|
|
export default {
|
|
name: 'php84',
|
|
path: '/apps/php84',
|
|
component: Layout,
|
|
isHidden: true,
|
|
children: [
|
|
{
|
|
name: 'apps-php84-index',
|
|
path: '',
|
|
component: () => import('./IndexView.vue'),
|
|
meta: {
|
|
title: 'PHP 8.4',
|
|
role: ['admin'],
|
|
requireAuth: true
|
|
}
|
|
}
|
|
]
|
|
} as RouteType
|