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