index.vue 1.86 KB
<template>
  <el-breadcrumb class="app-breadcrumb" separator="/">
    <transition-group name="breadcrumb">
      <el-breadcrumb-item
        v-for="(item, index) in levelListArr"
        :key="item.path"
      >
        <span
          v-if="
            item.redirect === 'noredirect' || index == levelListArr.length - 1
          "
          class="no-redirect"
          >{{ item.meta.title }}</span
        >
        <router-link
          v-else
          :to="item.redirect || item.path"
          class="no-redirect"
          >{{ item.meta.title }}</router-link
        >
      </el-breadcrumb-item>
    </transition-group>
  </el-breadcrumb>
</template>

<script>
import pathToRegexp from "path-to-regexp";

export default {
  data() {
    return {
      levelList: null
    };
  },
  watch: {
    $route() {
      this.getBreadcrumb();
    }
  },
  computed: {
    levelListArr() {
      return this.levelList.filter(item => item.meta && item.meta.title);
    }
  },
  created() {
    this.getBreadcrumb();
  },
  methods: {
    getBreadcrumb() {
      const { params } = this.$route;
      let matched = this.$route.matched.filter(item => {
        if (item.name) {
          // To solve this problem https://github.com/PanJiaChen/vue-element-admin/issues/561
          let toPath = pathToRegexp.compile(item.path);
          item.path = toPath(params);
          return true;
        }
      });
      // const first = matched[0]
      // if (first && first.name !== 'dashboard') {
      //   matched = [{ path: '/dashboard', meta: { title: 'Dashboard' }}].concat(matched)
      // }
      this.levelList = matched;
    }
  }
};
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.app-breadcrumb.el-breadcrumb {
  display: inline-block;
  font-size: 14px;
  line-height: 50px;
  margin-left: 10px;
  color: #fff;
  .no-redirect {
    color: #333;
    cursor: text;
  }
}
</style>