vue3封装面包屑

简介: vue3封装面包屑

breadCrumb.vue

<script setup lang="ts" >
import { ArrowRight } from '@element-plus/icons-vue'
import SvgIcon from '@/components/SvgIcon.vue'
const props = defineProps(['item','iconName'])
</script>
 
<template>
  <div class="breadCrumb">
    <SvgIcon :icon-name="props.iconName.name" class="bread-crumb-icon"></SvgIcon>
    <el-breadcrumb :separator-icon="ArrowRight">
      <el-breadcrumb-item :to="{ path: '/set' }">{{ props.item.first }}</el-breadcrumb-item>
      <el-breadcrumb-item v-if="props.item.second">{{ props.item.second }}</el-breadcrumb-item>
    </el-breadcrumb>
  </div>
</template>
 
<style scoped lang="scss">
.breadCrumb {
  width: 100%;
  height: 30px;
  // background-color: rgb(196, 174, 217);
  padding: 0 20px;
  display: flex;
  align-items: center;
  background-color: rgb(199, 188, 199);
 
  .bread-crumb-icon {
    margin-left: 15px;
    margin-right: 5px;
    cursor: pointer;
  }
}
 
:deep(.el-breadcrumb__item) {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
 
}
 
// 进入
:deep(.el-breadcrumb__inner:hover) {
 
  background-image: -webkit-linear-gradient(bottom, #543278, #fd8403, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}
 
//离开颜色
:deep(.el-breadcrumb__inner.is-link:hover) {
  color: rgb(119, 117, 117);
  cursor: pointer;
}
</style>

SvgIcon.vue.vue

<template>
    <svg aria-hidden="true" :style="{ width: size + 'px', height: size + 'px' }">
        <use :xlink:href="symbolId" :fill="color" />
    </svg>
</template>
<script setup lang="ts">
import { computed } from 'vue';
 
const props = defineProps({
    iconName: {
        type: String,
        required: true
    },
    color: {
        type: String,
        default: ''
    },
    size: {
        type: [Number, String],
        default: 20
    }
})
const symbolId = computed(() => `#icon-${props.iconName}`);
 
</script>
 
 
<style scoped>
.svg-icon {
    fill: currentColor;
    vertical-align: middle;
}
</style>

使用案例index.vue

<script setup lang="ts" >
import breadCrumb from '@/components/breadCrumb.vue'
import { ref } from 'vue';
//面包屑
const item = ref({
    first: '用户管理',
    second:'用户管理员'
})
//显示哪个图标
const iconName = ref({
    name: 'overview'
})
</script>
 
<template>
    <div>
        <breadCrumb :item="item" :iconName="iconName" />
    </div>
</template>
 
<style scoped lang="scss"></style>

图片

目录
相关文章
|
12天前
|
存储 JavaScript 前端开发
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
【10月更文挑战第21天】 vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
|
9天前
|
JavaScript 前端开发 开发者
Vue 3中的Proxy
【10月更文挑战第23天】Vue 3中的`Proxy`为响应式系统带来了更强大、更灵活的功能,解决了Vue 2中响应式系统的一些局限性,同时在性能方面也有一定的提升,为开发者提供了更好的开发体验和性能保障。
25 7
|
10天前
|
前端开发 数据库
芋道框架审批流如何实现(Cloud+Vue3)
芋道框架审批流如何实现(Cloud+Vue3)
30 3
|
9天前
|
JavaScript 数据管理 Java
在 Vue 3 中使用 Proxy 实现数据双向绑定的性能如何?
【10月更文挑战第23天】Vue 3中使用Proxy实现数据双向绑定在多个方面都带来了性能的提升,从更高效的响应式追踪、更好的初始化性能、对数组操作的优化到更优的内存管理等,使得Vue 3在处理复杂的应用场景和大量数据时能够更加高效和稳定地运行。
29 1
|
9天前
|
JavaScript 开发者
在 Vue 3 中使用 Proxy 实现数据的双向绑定
【10月更文挑战第23天】Vue 3利用 `Proxy` 实现了数据的双向绑定,无论是使用内置的指令如 `v-model`,还是通过自定义事件或自定义指令,都能够方便地实现数据与视图之间的双向交互,满足不同场景下的开发需求。
29 1
|
11天前
|
前端开发 JavaScript
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
|
12天前
Vue3 项目的 setup 函数
【10月更文挑战第23天】setup` 函数是 Vue3 中非常重要的一个概念,掌握它的使用方法对于开发高效、灵活的 Vue3 组件至关重要。通过不断的实践和探索,你将能够更好地利用 `setup` 函数来构建优秀的 Vue3 项目。
|
13天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
5天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发
|
5天前
|
存储 JavaScript
Vue 状态管理工具vuex
Vue 状态管理工具vuex
下一篇
无影云桌面