el-menu 有個屬性 :default-active="curActive" this
el-menu-item 有個屬性 :index=「home」路由
這2個屬性值對上號就自動定位了it
data() {
return {
curActive:"home"
};
},io
能夠在左側菜單欄組件裏對路由進行監控,就算切換tagview也會自動定位監控
watch: {
'$route' (to, from) {
this.curActive = this.$store.state.curPage
}
}route