Vue3后台管理系统Element-plus_侧边栏制作_无限递归

这篇具有很好参考价值的文章主要介绍了Vue3后台管理系统Element-plus_侧边栏制作_无限递归。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

在home.view中添加代码

Vue3后台管理系统Element-plus_侧边栏制作_无限递归,vue.js,javascript,前端

<template>
  <div>
    <div class="common-layout">
      <el-container>
        <el-header class="common-header flex-float">
          <div class="flex">
            <img class="logo" src="../assets/logo.png" alt="" />
            <h1 class="title">商铺后台管理系统</h1>
          </div>

          <el-button type="danger">退出</el-button>
        </el-header>
        <el-container>
          <!-- 侧边栏 -->
          <el-aside class="common-aside" width="200px">
            <!-- 菜单 -->
            <el-menu background-color="none" text-color="#fff" :router="true">
              <testItem v-for="menu in menuList" :menu="menu" :key="menu.id" :index="menu.id+''"></testItem>
            </el-menu>
          </el-aside>
          <el-main><router-view></router-view></el-main>
        </el-container>
      </el-container>
    </div>
  </div>
</template>
<script setup>
import { reactive } from 'vue'
let menuList = reactive([
  {
    authname: "随便管理",
    id: 1,
    children: [

    ]
  },
  {
    authname: "用户管理",
    id: 2,
    children: [
      {
        authname: "二级用户1",
        id: 12,
        children: []
      },
      {
        authname: "二级用户2",
        id: 13,
        children: [
          {
            id: 14,
            authname: "三级用户1"
          }
        ]
      }
    ]
  },
  {
    authname: "订单管理",
    id: 3,
    children: [
      {
        authname: "二级订单1",
        id: 15,
        children: []
      },
      {
        authname: "二级订单2",
        id: 16,
        children: [
          {
            id: 17,
            authname: "三级订单1",
            children:[
              {
                id:18,
                authname:"四级",
                children:[
                 {
                  id:20,
                  authname:"五级",
                  children:[]
                 }
                ]
              }
            ]
          }
        ]
      }
    ]
  }
])
</script>
<style >
.el-container {
  height: 100vh;
  overflow: hidden;
}

.common-header {
  background: rgb(63 67 72);
}

.common-aside {
  background: rgb(48, 55, 65);
}

.logo {
  width: 60px;
}

.title {
  color: #fff;
}
</style>

 2 创建一个全局组件

Vue3后台管理系统Element-plus_侧边栏制作_无限递归,vue.js,javascript,前端

<template lang="">
         
        <el-menu-item :index="menu.id+''"  v-if="!menu.children || menu.children.length == 0" >
            <image src="../assets/logo.png" style="width:30px;height:30px;"/>
            <span>{{ menu.authname }}</span>
        </el-menu-item>
        <el-sub-menu v-else >
                <template #title>
                    <image src="../assets/logo.png" style="width:30px;height:30px;"/>
                  <span>{{ menu.authname }}</span>
                </template>
               
                <!-- 二级菜单 -->
            <el-menu-item-group v-if=" menu.children&& menu.children.length>0">
                <testItem  v-for="item in menu.children" :key="item.id" :index="item.id+''" :menu="item"></testItem>
            </el-menu-item-group>
            <testItem v-else  v-for="item in menu.children" :key="item.id" :index="item.id+''" :menu="item"></testItem>
            
        </el-sub-menu>

    
</template>

<script>

export default {
    name: 'testItem',
    props: {
        menu: Object
    }
}
</script>


<style lang="">
    
</style>

 效果如图

Vue3后台管理系统Element-plus_侧边栏制作_无限递归,vue.js,javascript,前端文章来源地址https://www.toymoban.com/news/detail-699703.html

到了这里,关于Vue3后台管理系统Element-plus_侧边栏制作_无限递归的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包