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.
23 lines
447 B
23 lines
447 B
4 years ago
|
import BasicLayout from '@/layouts/home'
|
||
|
|
||
|
const meta = {}
|
||
|
|
||
|
const pre = 'setting-'
|
||
|
|
||
|
export default {
|
||
|
path: '/setting',
|
||
|
name: 'setting',
|
||
|
redirect: {
|
||
|
name: `${pre}person`
|
||
|
},
|
||
|
meta,
|
||
|
component: BasicLayout,
|
||
|
children: [
|
||
|
{
|
||
|
name: `${pre}person`,
|
||
|
path: `person`,
|
||
|
component: () => import('@/pages/setting/person'),
|
||
|
meta: { title: '个人中心' }
|
||
|
},
|
||
|
]
|
||
|
};
|