1.显示面包屑
{
path: '/ysCustomer',
name: 'clgl-manage',
redirect: '/ysCustomer/existCustomer',
component: PageView,
hideChildrenInMenu: true,
meta: { title: '存量管理', icon: 'schedule', permission: ['form'] },
// redirect: '/ysCustomer/existCustomer',
children: [
path: '/ysCustomer/existCustomer',
name: 'clgl',
component: () => import('@/views/ysCustomer/existCustomer'),
meta: { title: '存量管理', icon: 'schedule', permission: ['form'] }
}
]
},
2.不显示面包屑
{
path: '/ysPushView/ysPushView',
name: 'tsck_manage',
redirect: '/ysPushView/ysPushView',
component: () => import('@/views/ysPushView/ysPushView'),
hideChildrenInMenu: true,
meta: { title: '推送查看', icon: bxAnaalyse, permission: ['form'] },
children: [
{
path: '/ysPushView/ysPushView',
name: 'tsck',
component: () => import('@/views/ysPushView/ysPushView'),
meta: { title: '推送查看', icon: bxAnaalyse, permission: ['form'] },
}
]
},