const Layout = () => import('@/layout/index.vue') export default { name: 'Setting', path: '/', component: Layout, redirect: '/setting', meta: { title: '设置', order: 3, }, children: [ { name: 'Setting', path: 'setting', component: () => import('./index.vue'), meta: { title: '设置', icon: 'ant-design:setting-outlined', order: 3, }, }, ], }