index.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="bread-crumbs-wrap">
  3. <el-breadcrumb :separator-icon="ArrowRight">
  4. <!-- <el-breadcrumb-item><img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/home.png" alt=""></el-breadcrumb-item> -->
  5. <el-breadcrumb-item v-for="item in breadcrumbData" :key="item.name" :to="{ path: item.path }">
  6. <span>{{ $t(item.name) }}</span>
  7. </el-breadcrumb-item>
  8. </el-breadcrumb>
  9. </div>
  10. </template>
  11. <script setup>
  12. import { computed } from 'vue'
  13. import { ArrowRight } from '@element-plus/icons'
  14. import { useAppStore } from '@/store/modules/app'
  15. const userStore = useAppStore()
  16. const breadcrumbData = computed(() => userStore.getBreadCrumb)
  17. </script>
  18. <style lang="less" scoped>
  19. .bread-crumbs-wrap {
  20. background: @mainColor;
  21. padding: 10px;
  22. :deep(.el-breadcrumb) {
  23. .el-breadcrumb__item {
  24. .el-breadcrumb__inner {
  25. color: @textColor;
  26. }
  27. &:not(:last-child):hover {
  28. .el-breadcrumb__inner {
  29. color: @textActiveColor;
  30. }
  31. }
  32. }
  33. }
  34. }
  35. </style>