| | |
| | | let matched = route.matched.filter(item => item.meta && item.meta.title); |
| | | const first = matched[0] |
| | | // 判断是否为首页 |
| | | if (!isDashboard(first)) { |
| | | matched = [{ path: '/index', meta: { title: '首页' } }].concat(matched) |
| | | } |
| | | // if (!isDashboard(first)) { |
| | | // matched = [{ path: '/', meta: { title: '首页' } }].concat(matched) |
| | | // } |
| | | |
| | | levelList.value = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false) |
| | | } |
| | |
| | | margin-left: 8px; |
| | | |
| | | .no-redirect { |
| | | color: #97a8be; |
| | | color: #fff; |
| | | cursor: text; |
| | | } |
| | | .el-breadcrumb__inner a{ |
| | | color: #fff; |
| | | } |
| | | } |
| | | </style> |