Menu 菜单
为网站提供导航功能的菜单。
顶栏
顶部栏菜单可以在各种场景中使用。
左右
侧栏
垂直菜单,可内嵌子菜单。
Collapse 折叠面板
垂直导航菜单可以被折叠
弹出层偏移量 2.4.4
当提供了 popperOffset 配置,会覆盖 Submenu 的 popper-offset
.
Menu Attributes
属性名 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
mode | 菜单展示模式 | string | horizontal / vertical | vertical |
collapse | 是否水平折叠收起菜单(仅在 mode 为 vertical 时可用) | boolean | — | false |
ellipsis | 是否省略多余的子项(仅在横向模式生效) | boolean | — | true |
ellipsis-icon 2.4.4 | 自定义省略图标 (仅在水平模式下可用) | string | Component | — | — |
popper-offset 2.4.4 | 弹出层的偏移量(对所有子菜单有效) | number | — | 6 |
background-color | 菜单的背景颜色(十六进制格式)(已被废弃,使用--bg-color ) | string | — | #ffffff |
text-color | 文字颜色(十六进制格式)(已被废弃,使用--text-color ) | string | — | #303133 |
active-text-color | 活动菜单项的文本颜色(十六进制格式)(已被废弃,使用--active-color ) | string | — | #409eff |
default-active | 页面加载时默认激活菜单的 index | string | — | — |
default-openeds | 默认打开的 sub-menu 的 index 的数组 | Array | — | — |
unique-opened | 是否只保持一个子菜单的展开 | boolean | — | false |
menu-trigger | 子菜单打开的触发方式,只在 mode 为 horizontal 时有效。 | string | hover / click | hover |
router | 是否启用 vue-router 模式。 启用该模式会在激活导航时以 index 作为 path 进行路由跳转 使用 default-active 来设置加载时的激活项。 | boolean | — | false |
collapse-transition | 是否开启折叠动画 | boolean | — | true |
popper-effect 2.2.26 | Tooltip 主题,内置了 dark / light 两种主题 | string | dark / light | dark |
close-on-click-outside 2.4.4 | 可选,单击外部时是否折叠菜单 | boolean | — | false |
popper-class 2.5.0 | 为 popper 添加类名 | string | — | — |
show-timeout 2.5.0 | 菜单出现前的延迟 | number | — | 300 |
hide-timeout 2.5.0 | 菜单消失前的延迟 | number | — | 300 |
Menu Methods
方法名 | 说明 | 参数 |
---|---|---|
open | 展开指定的子菜单 | index: 需要打开的 sub-menu 的 index |
close | 关闭指定的子菜单 | index: 需要收起的 sub-menu 的 index |
Menu Events
事件名 | 说明 | 回调参数 |
---|---|---|
select | 菜单激活回调 | index: 选中菜单项的 index, indexPath: 选中菜单项的 index path, item: 选中菜单项, routeResult: vue-router 的返回值(如果 router 为 true) |
open | sub-menu 展开的回调 | index: 打开的 sub-menu 的 index, indexPath: 打开的 sub-menu 的 index path |
close | sub-menu 收起的回调 | index: 收起的 sub-menu 的 index, indexPath: 收起的 sub-menu 的 index path |
Menu Slots
插槽名 | 说明 | 子标签 |
---|---|---|
— | 自定义默认内容 | SubMenu / Menu-Item / Menu-Item-Group |
SubMenu Attributes
属性名 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
index | 唯一标志 | string | — | — |
popper-class | 为 popper 添加类名 | string | — | — |
show-timeout | 子菜单出现之前的延迟,(继承 menu 的 show-timeout 配置) | number | — | — |
hide-timeout | 子菜单消失之前的延迟,(继承 menu 的 hide-timeout 配置) | number | — | — |
disabled | 是否禁用 | boolean | — | false |
popper-append-to-body deprecated | 是否将弹出菜单插入至 body 元素。 在菜单的定位出现问题时,可尝试修改该属性 | boolean | — | 一级子菜单:true / 非一级子菜单:false |
teleported | 是否将 popup 的下拉列表插入至 body 元素 | boolean | — | 一级子菜单:true / 非一级子菜单:false |
popper-offset | 弹出窗口的偏移量 (覆盖 popper 的菜单) | number | — | — |
expand-close-icon | 父菜单展开且子菜单关闭时的图标, expand-close-icon 和 expand-open-icon 需要一起配置才能生效 | string | Component | — | — |
expand-open-icon | 父菜单展开且子菜单打开时的图标, expand-open-icon 和 expand-close-icon 需要一起配置才能生效 | string | Component | — | — |
collapse-close-icon | 父菜单收起且子菜单关闭时的图标, collapse-close-icon 和 collapse-open-icon 需要一起配置才能生效 | string | Component | — | — |
collapse-open-icon | 父菜单收起且子菜单打开时的图标, collapse-open-icon 和 collapse-close-icon 需要一起配置才能生效 | string | Component | — | — |
SubMenu Slots
插槽名 | 说明 | 子标签 |
---|---|---|
— | 自定义默认内容 | SubMenu / Menu-Item / Menu-Item-Group |
title | 自定义标题内容 | — |
Menu-Item Attributes
属性名 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
index | 唯一标志 | string/null | — | null |
route | Vue Router 路径对象 | object | — | — |
disabled | 是否禁用 | boolean | — | false |
Menu-Item Events
事件名 | 说明 | 回调参数 |
---|---|---|
click | 菜单点击时的回调函数 | el-menu-item 实例 |
Menu-Item Slots
插槽名 | 说明 |
---|---|
— | 自定义默认内容 |
title | 自定义标题内容 |
Menu-Item-Group Attributes
属性名 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
title | 组标题 | string | — | — |
Menu-Item-Group Slots
插槽名 | 说明 | 子标签 |
---|---|---|
— | 默认插槽内容 | Menu-Item |
title | 自定义组标题内容 | — |