mirror of
https://github.com/acepanel/panel.git
synced 2026-02-06 08:47:16 +08:00
25 lines
498 B
Go
25 lines
498 B
Go
import type { RouteType } from '~/types/router'
|
|
|
|
const Layout = () => import('@/layout/IndexView.vue')
|
|
|
|
export default {
|
|
name: 'php74',
|
|
path: '/apps/php74',
|
|
component: Layout,
|
|
isHidden: true,
|
|
children: [
|
|
{
|
|
name: 'apps-php74-index',
|
|
path: '',
|
|
component: () => import('../php/IndexView.vue'),
|
|
meta: {
|
|
title: 'PHP 7.4',
|
|
icon: 'mdi:language-php',
|
|
role: ['admin'],
|
|
requireAuth: true,
|
|
php: 74
|
|
}
|
|
}
|
|
]
|
|
} as RouteType
|