You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
378 B

2 years ago
/** 个人中西管理路由 */
import Layout from '@/layout/personCenterLayout'
const personRouter = {
path: '/person',
component: Layout,
redirect: '/person/index',
name: 'person',
hidden: true,
meta: {
title: '个人中心',
},
children: [{
path: 'index',
component: () => import('@/views/PersonCenter/index')
}]
}
export default personRouter