前端学习笔记element-Plus

【element-plus菜单】参数说明:

active-text-color="#ffd04b"------激活颜色

background-color="#232323"------背景颜色(29,160,176)
:default-active ="$route.path"------配置默认高亮的菜单项

text-color="#fff"
router router选项开启,el-menu-item 的 index 就是点击跳转的路径

el-menu-item 菜单项

index="/article/channel" 配置的是访问的跳转路径,配合default-active的值,实现高亮

Element PLus官方网址:Container 布局容器 | Element Plus

Element PLus官方网址:Menu 菜单 | Element Plus (element-plus.org)

导航菜单默认为垂直模式,通过将 mode 属性设置为 horizontal 来使导航菜单变更为水平模式。

复制代码
 <el-menu
          active-text-color="#ffd04b"
          background-color="#232323"
          :default-active="$route.path"
          text-color="#fff"
          router
        >
          <el-menu-item index="/article/channel">
            <el-icon><Management /></el-icon>
            <span>文章分类</span>
          </el-menu-item>
          <el-menu-item index="/article/manage">
            <el-icon><Promotion /></el-icon>
            <span>文章管理</span>
          </el-menu-item>

          <el-sub-menu index="/user">
            <!-- 多级菜单的标题 - 具名插槽 title -->
            <template #title>
              <el-icon><UserFilled /></el-icon>
              <span>个人中心</span>
            </template>

            <!-- 展开的内容 - 默认插槽 -->
            <el-menu-item index="/user/profile">
              <el-icon><User /></el-icon>
              <span>基本资料</span>
            </el-menu-item>
            <el-menu-item index="/user/avatar">
              <el-icon><Crop /></el-icon>
              <span>更换头像</span>
            </el-menu-item>
            <el-menu-item index="/user/password">
              <el-icon><EditPen /></el-icon>
              <span>重置密码</span>
            </el-menu-item>
          </el-sub-menu>
        </el-menu>
相关推荐
Ccjf酷儿3 分钟前
操作系统 李治军 1 操作系统基础
笔记
Ghost-Silver5 分钟前
《星火》——关于Deepseek的进化速度
笔记·算法
古译汉书7 分钟前
嵌入式笔记(个人总结)
数据结构·笔记·stm32·单片机·嵌入式硬件
on_pluto_19 分钟前
【debug】关于如何让电脑里面的两个cuda共存
linux·服务器·前端
雍凉明月夜25 分钟前
视觉opencv学习笔记Ⅲ
笔记·opencv·学习
组合缺一32 分钟前
Solon AI 开发学习6 - chat - 两种 http 流式输入输出
python·学习·http
r***F26233 分钟前
Go-Gin Web 框架完整教程
前端·golang·gin
chilavert31836 分钟前
技术演进中的开发沉思-220 Ajax:XMLHttpRequest 对象
前端·javascript
陈天伟教授44 分钟前
机器学习方法(4)强化学习(试错学习)
人工智能·学习·机器学习
IT_陈寒1 小时前
Python开发者必看:5个被低估但能提升200%编码效率的冷门库实战
前端·人工智能·后端