在寫博客的時候用到了elementUI中menu菜單,ios
需求:點擊當前頁面的按鈕跳轉到首頁,給menu中綁定的default-active賦值element-ui
問題:頁面已經跳轉過去,可menu選中項根本沒有發生變化bash
解決辦法: 直接將當前頁面的路由綁定到default-active上,同時將index改成當前路由,這樣在經過非點擊導航菜單跳轉頁面時就不須要再來手動改變導航菜單的選中項了,它會本身選中當前頁面的tab項,完美解決!(其實不止element-ui有這個問題,iview也是同樣的)iview
// :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>
複製代碼