修复混合导航,头部菜单没有选中状态问题

This commit is contained in:
ggymm
2021-11-02 15:20:16 +08:00
committed by GitHub
parent 816d19f7da
commit c2d2c2c686

View File

@@ -235,7 +235,7 @@ export default {
let matches = this.$route.matched
const route = matches[matches.length - 1]
let chose = this.routesMap[route.path]
if (chose.meta && chose.meta.highlight) {
if (chose && chose.meta && chose.meta.highlight) {
chose = this.routesMap[chose.meta.highlight]
const resolve = this.$router.resolve({path: chose.fullPath})
matches = (resolve.resolved && resolve.resolved.matched) || matches