在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
switchMainMenuAndPageJump: true,
},
}
扩展阅读 v4.10.0 新增
该特性可以扩展出次导航只有一个导航时自动隐藏的效果:
你只需要在某个主导航下只保留一个次导航,并且通过 meta.menu
将其隐藏,就像这样:
import MultilevelMenuExample from './modules/multilevel.menu.example'
import BreadcrumbExample from './modules/breadcrumb.example'
// 动态路由(异步路由、导航栏路由)
const asyncRoutes: Route.recordMainRaw[] = [
{
meta: {
title: $t('route.demo'),
icon: 'menu-default',
},
children: [
MultilevelMenuExample,
BreadcrumbExample,
],
},
{
meta: {
title: '测试',
},
children: [
{
path: '/test',
component: () => import('@/layouts/index.vue'),
redirect: '/test/page',
name: 'test',
meta: {
title: '演示页面',
menu: false, // 注意,需要将这个导航隐藏
},
children: [
{
path: 'page',
name: 'testPage',
component: () => import('@/views/test/page.vue'),
meta: {
title: '演示页面',
menu: false,
},
},
],
},
],
},
]
在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
subMenuUniqueOpened: false,
},
}
在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
subMenuCollapse: true,
},
}
在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
enableSubMenuCollapseButton: true,
},
}
在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
subMenuOnlyOneHide: true,
},
}
搭配开启 menu.switchMainMenuAndPageJump
可以实现如下的效果:
你只需要在某个主导航下只保留一个次导航,就像这样:
import MultilevelMenuExample from './modules/multilevel.menu.example'
import BreadcrumbExample from './modules/breadcrumb.example'
// 动态路由(异步路由、导航栏路由)
const asyncRoutes: Route.recordMainRaw[] = [
{
meta: {
title: $t('route.demo'),
icon: 'menu-default',
},
children: [
MultilevelMenuExample,
BreadcrumbExample,
],
},
{
meta: {
title: '测试',
},
children: [
{
path: '/test',
component: () => import('@/layouts/index.vue'),
redirect: '/test/page',
name: 'test',
meta: {
title: '演示页面',
},
children: [
{
path: 'page',
name: 'testPage',
component: () => import('@/views/test/page.vue'),
meta: {
title: '演示页面',
menu: false,
},
},
],
},
],
},
]
在应用配置中设置:
const globalSettings: Settings.all = {
menu: {
subMenuAutoCollapse: true,
},
}
当次导航处于收起状态时可以实现如下的效果: