IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> element 三级导航栏(递归方法) -> 正文阅读

[JavaScript知识库]element 三级导航栏(递归方法)

组件NavMenu?

<template>
  <div>
    <template v-for="item in routerList">
      <el-submenu v-if="item.hasOwnProperty('children')&&item.children.length>0" :key="item.path" :index="item.path">
        <template slot="title" style="padding-left:10px">
          <i class="el-icon-menu"></i>
          <span slot="title">{{ item.name}}</span>
        </template>
        <!--  如果有子级数据使用递归组件 -->
        <Menu :routerList="item.children"></Menu>
      </el-submenu>
      <el-menu-item v-else :index="item.path" :key="item.path">
        <i :class="item.icon"></i>
        <span>{{item.name}}</span>
      </el-menu-item>
    </template>
  </div>
</template>

<script>
export default {
  props: ['routerList'],
  name: 'Menu',//模板名称
  created () {
    console.log(this.routerList, 'routerList')
  },
}
</script><style  lang="scss">
.el-menu--collapse span,
.el-menu--collapse i.el-submenu__icon-arrow {
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  display: inline-block;
}
</style>

调用组件

<template>
  <div>
    <div class="tools" @click="toggleClick">
      <i :class="icon"></i>
    </div>

    <div class="df">
      <div class="left">
        <el-menu
          router
          class="el-menu-vertical-demo"
          :collapse="isCollapse"
          background-color="rgb(0, 80, 96)"
          text-color="rgba(255,255,255,0.7)"
          unique-opened
          default-active='/forms'
        >
          <Menu :routerList="routers"></Menu>
        </el-menu>
      </div>
      <div class="right">
        <router-view />
      </div>
    </div>
  </div>
</template>



<script>
import Menu from "./components/NavMenu"; 
export default {
  data() {
    return {
      isCollapse: false, //菜单展开功能
      unCollapse: {
        width: "220px",
      },
      collapse: {
        width: "50px",
      },
      unCollapseMain: {
        paddingLeft: "220px",
      },
      collapseMain: {
        paddingLeft: "50px",
      },
    };
  },
  components: {
    Menu,
  },
  computed: {
    routers() {
      return this.$router.options.routes[2].children;
    },
    icon: function () {
      return this.isCollapse ? "el-icon-right" : "el-icon-back";
    },
  },
  methods: {
    toggleClick() {
      this.isCollapse = !this.isCollapse;
    },
  },
};
</script>

<style  lang="scss">
.el-menu-vertical-demo:not(.el-menu--collapse) {
  width: 200px;
  min-height: 400px;
  height: 100%;
}
.el-menu--collapse{
  height: 100%;
}
.tools {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  color: pink;
  background-color: rgb(24, 9, 78);
}
.df {
  display: flex;
}
.left {
  width: 200px;
  height: calc(100vh - 30px);
  // background-color: rgb(0, 80, 96);
}
.right {
  width: calc(100% - 200px);
  height: calc(100vh - 30px);
}
</style>

路由

import Vue from 'vue'
import Router from 'vue-router'

import layout from '@/layout/index'

Vue.use(Router)
const constantRouter = [
  {
    path: '/',
    redirect: () => {
      return '/login'
    }
  },
  {
    path: '/login',
    component: resolve => require(['@/view/login/index'], resolve),
    meta: {
      role: ['admin', 'super_editor']
    }
  },
  {
    path: '/layout',
    // name: '首页',
    component: layout,
    children: [
      {
        path: '/mall',
        name: '****',
        icon: 'el-icon-goods',
        keepalive: true,
        component: () => import('@/view/one/one'),
        // redirect: '/mall-list',
        children: [
          {
            path: '/forms',
            name: '表格数据',
            icon: 'el-icon-goods',
            keepalive: true,
            // redirect: '/three-1',
            component: () => import('@/view/one/one')
          },
          {
            path: '/mall-list2',
            name: '初选管理',
            icon: 'el-icon-goods',
            // redirect: '/three-1',
            component: () => import('@/view/one/one')
          },
          {
            path: '/commodity',
            name: '商品',
            icon: 'el-icon-goods',
            // redirect: '/three-1',
            component: () => import('@/view/one/one')
          },
          {
            path: '/treeview',
            name: '树形控件',
            icon: 'el-icon-service',
            component: () => import('@/view/one/one')
          },
          {
            path: '/tree',
            name: '树形控件2',
            icon: 'el-icon-service',
            component: () => import('@/view/one/one'),
            children: [
              {
                path: '/three-1',
                name: '三级级菜单-1',
                component: () => import('@/view/one/one'),
                children: [
                  {
                    path: '/fore-1',
                    name: '四级级菜单-1',
                    // component: () => import('@/pages/asideBar/fore')
                  },
                  {
                    path: '/fore-2',
                    name: '四级级菜单-2',
                    // component: () => import('@/pages/asideBar/fore2')
                  }
                ]
              }
            ]
          },
          {
            path: '/subassembly',
            name: '组件传值',
            icon: 'el-icon-service',
            component: () => import('@/view/one/one')
          }
        ]
      },
      {
        path: '/one-2',
        name: '富文本编辑',
        icon: 'el-icon-service',
        component: () => import('@/view/one/one'),
        children: [
          {
            name: '二级菜单-2',
            icon: 'el-icon-service',
            path: '/one-3',
            component: () => import('@/view/one/one')
          }
        ]
      }
    ]
  }
]

// const asyncRouter = [
//   {
//     path: '/asyncRouter',
//     name: 'asyncRouter',
//     component: ()=> import( '@/pages/asyncRouter' )
//   }
// ]

export default new Router({
  mode: 'history', // 用这个模式可以把#号去掉
  routes: constantRouter
})

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:14:27  更:2022-04-09 18:17:17 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:58:04-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码