element-plus默认菜单打开

embedded/2024/11/14 6:29:25/

在 Vue 3 中使用 Element Plus 的 <el-menu> 组件时,默认情况下菜单项是关闭状态的。如果你想让某个菜单项默认处于展开状态,你可以通过设置菜单项的 default-active 属性来实现。

默认写法

步骤 1: 设置 default-active

你需要在 <el-menu> 组件上设置 default-active 属性,并为其提供一个值,该值应该是你希望默认激活的菜单项的索引或路径。

示例代码

假设你有一个简单的菜单结构,其中包含一个子菜单,你想让这个子菜单默认展开:

<template><el-menu :default-active="activeIndex" class="el-menu-vertical-demo"><el-sub-menu index="1"><template #title><el-icon><location /></el-icon><span>导航一</span></template><el-menu-item index="1-1">选项1</el-menu-item><el-menu-item index="1-2">选项2</el-menu-item><el-menu-item index="1-3">选项3</el-menu-item></el-sub-menu><el-menu-item index="2"><el-icon><document /></el-icon><template #title>导航二</template></el-menu-item><el-menu-item index="3" disabled><el-icon><setting /></el-icon><template #title>导航三</template></el-menu-item></el-menu>
</template><script setup>
import { ref } from 'vue';
import { Location, Document, Setting } from '@element-plus/icons-vue';const activeIndex = ref('1-1');  // 默认激活 "1-1" 菜单项
</script>

说明

  1. default-active 属性:设置为 '1-1',表示默认激活 index="1-1" 的菜单项。
  2. el-sub-menu:用于创建子菜单。
  3. el-menu-item:用于创建菜单项。
  4. <el-icon>:用于显示图标。
  5. <template #title>:用于自定义菜单项的标题。

注意事项

  • 如果你想让一个子菜单默认展开,可以将 default-active 设置为该子菜单中的任意一个子菜单项的 index
  • 如果你想让多个子菜单默认展开,可以使用数组形式的 default-active 属性。

示例:多个子菜单默认展开

如果你想让多个子菜单默认展开,你可以将 default-active 设置为一个数组,包含你希望默认激活的菜单项的索引。

<template><el-menu :default-active="['1-1', '2']" class="el-menu-vertical-demo"><el-sub-menu index="1"><template #title><el-icon><location /></el-icon><span>导航一</span></template><el-menu-item index="1-1">选项1</el-menu-item><el-menu-item index="1-2">选项2</el-menu-item><el-menu-item index="1-3">选项3</el-menu-item></el-sub-menu><el-menu-item index="2"><el-icon><document /></el-icon><template #title>导航二</template></el-menu-item><el-menu-item index="3" disabled><el-icon><setting /></el-icon><template #title>导航三</template></el-menu-item></el-menu>
</template><script setup>
import { ref } from 'vue';
import { Location, Document, Setting } from '@element-plus/icons-vue';const activeIndex = ref(['1-1', '2']);  // 默认激活 "1-1" 和 "2" 菜单项
</script>

在这个例子中,default-active 设置为 ['1-1', '2'],表示默认激活 index="1-1"index="2" 的菜单项。这将使得 index="1" 的子菜单及其第一个子菜单项 index="1-1" 处于展开状态,并且 index="2" 的菜单项也处于激活状态。

特殊写法

Menu 组件

<template><template v-for="(item, index) in menuList" :key="index"><!-- 没有子路由 --><template v-if="!item.children"><el-menu-item v-if="!item.meta.hidden" :index="item.path" @click="goRoute"><el-icon><component :is="item.meta.icon"></component></el-icon><template #title><span>{{ item.meta.title }}</span></template></el-menu-item></template><!-- 只有一个子路由 --><template v-if="item.children && item.children.length == 1"><el-menu-item v-if="!item.children[0].meta.hidden" :index="item.children[0].path" @click="goRoute"><el-icon><component :is="item.children[0].meta.icon"></component></el-icon><template #title><span>{{ item.children[0].meta.title }}</span></template></el-menu-item></template><!-- 有多个子路由 --><el-sub-menu v-if="item.children && item.children.length > 1" :index="item.path"><template #title><el-icon><component :is="item.meta.icon"></component></el-icon><span>{{ item.meta.title }}</span></template><Menu :menuList="item.children"></Menu></el-sub-menu></template>
</template><script setup lang="ts">
import { useRouter } from 'vue-router'
// 引入路由器
const $router = useRouter()
// 获取父组件传递的数据
defineProps(['menuList'])
// 点击菜单的回调
const goRoute = (vc: any) => {// 路由跳转$router.push(vc.index)
}
</script>
<script lang="ts">
export default {name: 'Menu'
}
</script>
<style scoped></style>

菜单栏 组件:

<template><div class="layout_container"><!-- 左侧菜单 --><div class="layout_slider"><Logo></Logo><!-- 展示菜单 --><!-- 滚动组件 --><el-scrollbar class="scrollbar"><!-- 菜单组件 --><el-menu background-color="#2e2e2e" text-color="white" active-text-color="yellowgreen" :default-active="$route.path"><Menu :menuList="userStore.menuRoutes"></Menu></el-menu></el-scrollbar></div><!-- 顶部导航 --><div class="layout_tabbar">456</div><!-- 内容展示区域 --><div class="layout_main"><Main></Main></div></div>
</template><script setup lang="ts">
// 引入左侧菜单logo子组件
import Logo from './logo/index.vue'
// 引入菜单组件
import Menu from './menu/index.vue'
// 右侧内容的展示区
import Main from './main/index.vue'
// 获取路由对象
import { useRoute } from 'vue-router';
// 获取用户相关的小仓库
import useUserStore from '@/store/modules/user';
let userStore = useUserStore();// 获取路由对象
let $route = useRoute();
</script><style scoped lang="scss">
.layout_container {width: 100%;height: 100vh;background-color: red;.layout_slider {width: $base-menu-width;height: 100vh;background-color: $base-menu-bg;.scrollbar {width: $base-menu-width;height: calc(100vh - $base-menu-logo-height);.el-menu {border-right: none;}}}.layout_tabbar {position: fixed;width: calc(100% - $base-menu-width);height: $base-tabbar-height;background-color: cyan;top: 0px;left: $base-menu-width;}.layout_main {position: fixed;width: calc(100% - $base-menu-width);height: calc(100% - $base-tabbar-height);background-color: yellow;top: $base-tabbar-height;left: $base-menu-width;padding: 20px;overflow: auto;}
}
</style>


http://www.ppmy.cn/embedded/97298.html

相关文章

浙商证券社招入职人才测评:语言数字逻辑性格北森测评笔试题库高分答案、通关技巧

浙商证券作为一家综合性证券公司&#xff0c;其社会招聘的待遇情况包括但不限于以下几个方面&#xff1a;首先&#xff0c;公司提供具有竞争力的薪酬体系&#xff0c;其中应届生的平均薪资待遇大约在12K-20K之间&#xff0c;并且可能发放20个月的薪资&#xff0c;总包大约在25万…

【车载开发系列】常见单片机烧录与调试设备

【车载开发系列】常见单片机烧录与调试设备 常见单片机烧录与调试设备 【车载开发系列】常见单片机烧录与调试设备一. ST-LINK二. J-Link三. ISP&#xff08;In-System Programming 系统在线编程&#xff09;四. USB DFU&#xff08;Device Firmware Upgrade&#xff09;五. JT…

异常篇(Java - 异常机制)(doing)

目录 一、何为异常 二、异常处理机制 1. 简介 2. 产生原因 三、异常类 1. Throwable 2. Exception&#xff08;RuntimeException、CheckedException&#xff09; 四、异常类型 1. 系统错误 2. 编译时期异常 3. 运行时期异常 4. 三种类型异常的区别 五、链式异常 1…

Qt如何调取打印机

在Qt中&#xff0c;可以使用QPrinter类来调用打印机。以下是一个简单的示例&#xff1a; cpp // 创建一个打印机对象 QPrinter *printer new QPrinter; // 设置为默认打印机 printer->setOutputFileName("file://localhost/lp0"); // 设置打印模式 printer-&…

【题目/训练】:双指针

引言 我们已经在这篇博客【算法/学习】双指针-CSDN博客里面讲了双指针、二分等的相关知识。 现在我们来做一些训练吧 经典例题 1. 移动零 思路&#xff1a; 使用 0 当做这个中间点&#xff0c;把不等于 0(注意题目没说不能有负数)的放到中间点的左边&#xff0c;等于 0 的…

在 CentOS Stream 9 中安装 MySQL 8

MySQL 是一种广泛使用的开源关系型数据库管理系统&#xff0c;它可以存储和管理各种类型的数据&#xff0c;如文本&#xff0c;数字&#xff0c;日期&#xff0c;图像等。MySQL 8 是 MySQL 的最新版本&#xff0c;它提供了许多新的特性和改进&#xff0c;如窗口函数&#xff0c…

SpringBoot依赖之Spring Data Redis一集合Set

概念 Spring Data Redis (AccessDriver) 依赖名称: Spring Data Redis (AccessDriver)功能描述: Advanced and thread-safe Java Redis client for synchronous, asynchronous, and reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs and muc…

iOS(OC)学习第2天-绑定UI和点击事件

之前我们学会了设置UI&#xff0c;但是UI组件没有绑定点击事件,不能交互 第一步-设置静态操作页面 页面上共6个UI组件&#xff1a;三个UILabel ,两个 UITextField &#xff0c;一个UIButton 第二步-定义变量和方法 //ViewController.h #import <UIKit/UIKit.h>interfac…