25 lines
412 B
JavaScript
25 lines
412 B
JavaScript
const Layout = () => import('@/layout/index.vue')
|
|
|
|
export default {
|
|
name: 'User',
|
|
path: '/',
|
|
component: Layout,
|
|
redirect: '/user',
|
|
meta: {
|
|
title: '管理员',
|
|
order: 1,
|
|
},
|
|
children: [
|
|
{
|
|
name: 'User',
|
|
path: 'user',
|
|
component: () => import('./index.vue'),
|
|
meta: {
|
|
title: '管理员',
|
|
icon: 'ph:users-bold',
|
|
order: 1,
|
|
},
|
|
},
|
|
],
|
|
}
|