2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00

fix: PHP84 管理页

This commit is contained in:
耗子
2024-11-26 04:44:44 +08:00
parent 637fb83398
commit 01a4ec8800
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
import PhpView from '@/views/apps/php/PhpView.vue'
defineOptions({
name: 'apps-php84-index'
})
</script>
<template>
<php-view :version="84" />
</template>

View File

@@ -0,0 +1,23 @@
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',
icon: 'logos:php',
role: ['admin'],
requireAuth: true
}
}
]
} as RouteType