vue中的面包屑導航組件實例代碼
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 中的面包屑設(shè)置的,
<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>
總結(jié)
以上所述是小編給大家介紹的vue中的面包屑導航組件實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
相關(guān)文章
Vue+ElementUI踩坑之動態(tài)顯示/隱藏表格的列el-table-column問題
這篇文章主要介紹了Vue+ElementUI踩坑之動態(tài)顯示/隱藏表格的列el-table-column問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-11-11Vue 動態(tài)組件與 v-once 指令的實現(xiàn)
這篇文章主要介紹了Vue 動態(tài)組件與 v-once 指令的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-02-02詳解使用vue-admin-template的優(yōu)化歷程
這篇文章主要介紹了詳解使用vue-admin-template的優(yōu)化歷程,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-05-05ElementUI表單驗證validate和validateField的使用及區(qū)別
Element-UI作為前端框架,最常使用到的就是表單驗證,下面這篇文章主要給大家介紹了關(guān)于ElementUI表單驗證validate和validateField的使用及區(qū)別,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下2023-02-02