2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 10:07:15 +08:00
Files
panel/web/src/views/project/route.ts
2025-12-01 19:37:19 +08:00

26 lines
493 B
Go

import type { RouteType } from '~/types/router'
const Layout = () => import('@/layout/IndexView.vue')
export default {
name: 'project',
path: '/project',
component: Layout,
meta: {
order: 3
},
children: [
{
name: 'project-index',
path: '',
component: () => import('./IndexView.vue'),
meta: {
title: 'Project',
icon: 'mdi:folder-multiple-outline',
role: ['admin'],
requireAuth: true
}
}
]
} as RouteType