export default [ { path: '/', redirect: '/homeIndex', }, { path: '/register', meta: { title: '账号注册', is_filter: false }, component: () => import('@/views/register.vue'), }, { path: '/login', meta: { title: '账号登录', is_filter: false }, component: () => import('@/views/login.vue'), }, { path: '/homeIndex', meta: { title: '中台', is_filter: true }, component: () => import('@common/src/components/admin-frame/home.vue'), children: [ { path: '/homeIndex', meta: { title: '中台', is_filter: true }, component: () => import('@/views/home/index.vue'), }, { path: '/test/test1', meta: { title: '二级菜单', is_filter: true }, component: () => import('@/views/test/test1/index.vue'), }, { path: '/test/test2/test1', meta: { title: '三级菜单', is_filter: true }, component: () => import('@/views/test/test2/test1/index.vue'), }, ], }, ];