mirror of
https://github.com/acepanel/panel.git
synced 2026-02-07 02:07:26 +08:00
26 lines
493 B
Go
26 lines
493 B
Go
import type { RouteType } from '~/types/router'
|
|
|
|
const Layout = () => import('@/layout/IndexView.vue')
|
|
|
|
export default {
|
|
name: 'setting',
|
|
path: '/setting',
|
|
component: Layout,
|
|
meta: {
|
|
order: 999
|
|
},
|
|
children: [
|
|
{
|
|
name: 'setting-index',
|
|
path: '',
|
|
component: () => import('./IndexView.vue'),
|
|
meta: {
|
|
title: '面板设置',
|
|
icon: 'mdi:settings-outline',
|
|
role: ['admin'],
|
|
requireAuth: true
|
|
}
|
|
}
|
|
]
|
|
} as RouteType
|