在开发当中会遇到一些组件的封装,侧边栏导航的封装也是很实用的。下面代码拿走直接用!!!
<template>
<div>
<el-aside width="200px">
<el-menu
default-active="1"
background-color="#545c64"
text-color="#fff"
:unique-opened="true"
active-text-color="#ffd04b">
<div v-for="(item,index) in list2" :key="index">
<el-submenu v-if="item.children && item.children.length" :index="item.path" :key="item.path" >
<template slot="title" >
<img :src="item.icon" alt="">
<span>{
{item.name}}</span>
</