elementUI 页面刷新菜单定位

el-menu  有个属性 :default-active="curActive"  

el-menu-item 有个属性 :index=“home”

这2个属性值对上号就自动定位了

data() {
  return {
    curActive:"home"
  };
},

可以在左侧菜单栏组件里对路由进行监控,就算切换tagview也会自动定位

watch: {
  '$route' (to, from) {
    this.curActive = this.$store.state.curPage
  }
}

转载于:https://www.cnblogs.com/92xcd/p/10402564.html

你可能感兴趣的:(elementUI 页面刷新菜单定位)