时间:2021-05-26
vue的面包屑导航组件
用来将其放到navbar中;
Breadcrumb/index.vue
<template> <el-breadcrumb class="app-breadcrumb" separator="/"> <transition-group> <el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path" v-if="item.meta.title"> <span v-if='item.redirect==="noredirect"||index==levelList.length-1' class="no-redirect">{{item.meta.title}}</span> <router-link v-else :to="item.redirect||item.path">{{item.meta.title}}</router-link> </el-breadcrumb-item> </transition-group> </el-breadcrumb></template><script> export default { name: "idnex", data(){ return { levelList:null } }, created() { this.getBreadcrumb() }, watch:{ $route(){ this.getBreadcrumb() } }, methods:{ getBreadcrumb(){ let matched=this.$route.matched.filter(item=>item.name)//$route.matched 将会是一个包含从上到下的所有对象 (副本)。 const first=matched[0] if(first && first.name !=='dashboard'){//$route.name当前路由名称 ;$route.redirectedFrom重定向来源的路由的名字 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; .no-redirect { color: #97a8be; cursor: text; } }</style>ps:下面在看下一段代码Vue 面包屑导航
样式采用的是element ui 中的面包屑设置的,
<template><el-breadcrumb><el-breadcrumb-item separator = '/' v-for = "(item,index) in breadlist" :key = 'index' :to="{path: item.path}">{{item.meta.CName}}</el-breadcrumb-item> </el-breadcrumb></template>js部分<script>export default {data(){return {breadlist: ''}},created() {this.getBread();},methods:{getBread(){this.breadlist = this.$route.matched;this.$route.matched.forEach((item,index)=>{//先判断父级路由是否是空字符串或者meta是否为首页,直接复写路径到根路径item.meta.CName === '首页' ? item.path = '/' : this.$route.path === item.path;});}},watch:{$route(){this.getBread();}}}</script>总结
以上所述是小编给大家介绍的vue中的面包屑导航组件实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
【常用面包屑】9种不同的面包屑和分布式多步骤导航实例代码9种不同的面包屑和分布式多步骤导航1、基本面包屑首页jQueryPHP模板2、自定义分隔符面包屑首页jQ
组件—面包屑什么是面包屑导航一般页面内容上方都会有一个路径导航,这个导航就是面包屑导航。例如:上面这个图表示我们当前的页面是Breadcrumb面包屑,上一级目
面包屑导航这个概念大家可以百度一下,面包屑导航的作用是告诉用户目前所在网站中的位置,并告诉用户如何返回。面包屑导航是给用户指路的最好方法,通常使用面包屑导航的网
洛阳网站建设网站优化中面包屑导航的原理和效果是什么?网站的面包屑导航是什么?对SEO的影响【网站优化技术】今天的话题是面包屑导航,相信这不是很疏远,也是我们
灞桥高端网站设计:网站建站中面包屑设计技巧全面总结面包屑导航的一般性质对于了解面包屑的用户体验和研究非常重要。面包屑导航允许用户实时查看他们在网站上的位置。该网