elementUI 中MENU菜单踩坑
// :default-active="$route.name"
<el-menu
:router="true"
:default-active="$route.name"
class="el-menu-demo"
mode="horizontal"
@select="select"
background-color="#545c64"
text-color="#fff"
active-text-color="#ffd04b">
<el-menu-item :route="{name: 'home'}" index="home">
<template slot="title">
<Icon type="ios-home"></Icon>
<span>首页</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'article'}" index="article">
<template slot="title">
<i class="el-icon-location"></i>
<span>文章</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'time'}" index="time">
<template slot="title">
<i class="el-icon-location"></i>
<span>时间轴</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'photo'}" index="photo">
<template slot="title">
<i class="el-icon-location"></i>
<span>生活照</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'footprint'}" index="footprint">
<template slot="title">
<i class="el-icon-location"></i>
<span>足迹</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'aboutme'}" index="aboutme">
<template slot="title">
<i class="el-icon-location"></i>
<span>关于我</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'message'}" index="message">
<template slot="title">
<i class="el-icon-location"></i>
<span>留言板</span>
</template>
</el-menu-item>
<el-menu-item :route="{name: 'manage'}" index="manage">
<template slot="title">
<i class="el-icon-location"></i>
<span>后台管理</span>
</template>
</el-menu-item>
</el-menu>
复制代码