97 lines
2.6 KiB
Vue
97 lines
2.6 KiB
Vue
<template>
|
|
<CHeader position="sticky" class="mb-4">
|
|
<CHeaderToggler class="ms-md-3" @click="$store.commit('toggleSidebar')">
|
|
<CIcon name="cil-menu" size="lg" />
|
|
</CHeaderToggler>
|
|
<CHeaderBrand class="mx-auto d-lg-none" to="/">
|
|
<CIcon name="logo" height="48" alt="Logo" />
|
|
</CHeaderBrand>
|
|
<CHeaderNav class="d-md-down-none me-auto">
|
|
<CNavItem>
|
|
<CNavLink
|
|
href="/dashboard"
|
|
>
|
|
Dashboard
|
|
</CNavLink>
|
|
</CNavItem>
|
|
<CNavItem>
|
|
<CNavLink href="#">Users</CNavLink>
|
|
</CNavItem>
|
|
<CNavItem>
|
|
<CNavLink href="#">Settings</CNavLink>
|
|
</CNavItem>
|
|
</CHeaderNav>
|
|
<CHeaderNav class="me-4">
|
|
<CNavItem class="d-md-down-none mx-2">
|
|
<CNavLink>
|
|
<CIcon name="cil-bell" size="lg" />
|
|
</CNavLink>
|
|
</CNavItem>
|
|
<CNavItem class="d-md-down-none mx-2">
|
|
<CNavLink>
|
|
<CIcon name="cil-list" />
|
|
</CNavLink>
|
|
</CNavItem>
|
|
<CNavItem class="d-md-down-none mx-2">
|
|
<CNavLink>
|
|
<CIcon name="cil-envelope-open" />
|
|
</CNavLink>
|
|
</CNavItem>
|
|
<!-- <TheHeaderDropdownAccnt/> -->
|
|
</CHeaderNav>
|
|
<div class="col-12 border-top pt-2 px-4">
|
|
<CBreadcrumb class="d-md-down-none me-auto">
|
|
<CBreadcrumbItem v-for="item in currentRoute" :href="item.to" :active="item.to === '' ? true : false">
|
|
{{ item.name }}
|
|
</CBreadcrumbItem>
|
|
</CBreadcrumb>
|
|
</div>
|
|
</CHeader>
|
|
</template>
|
|
|
|
<script>
|
|
// import TheHeaderDropdownAccnt from './TheHeaderDropdownAccnt'
|
|
|
|
import router from "../router";
|
|
export default {
|
|
name: "AppHeader",
|
|
components: {},
|
|
data: function(){
|
|
return {
|
|
currentRoute: []
|
|
}
|
|
},
|
|
methods: {
|
|
upperCaseFirstChar: function(string){
|
|
return string.substr(0,1).toUpperCase()+ string.substr(1)
|
|
},
|
|
makeCurrentRoute: function(){
|
|
let result = []
|
|
let path = router.currentRoute._value.path
|
|
let temp = path.split('/')
|
|
let to = ''
|
|
if(temp.length <= 2){
|
|
result.push({ to: '', name: router.currentRoute._value.name})
|
|
}else{
|
|
for(let i = 1; i<temp.length-1; i++){
|
|
for(let j = 1; j<=i; j++){
|
|
to += `/${temp[j]}`
|
|
}
|
|
result.push({ to: to, name: this.upperCaseFirstChar(temp[i]) })
|
|
}
|
|
result.push({ to: '', name: router.currentRoute._value.name})
|
|
}
|
|
return result
|
|
}
|
|
},
|
|
watch: {
|
|
$route (to, from){
|
|
this.currentRoute = this.makeCurrentRoute()
|
|
}
|
|
},
|
|
mounted: function(){
|
|
this.currentRoute = this.makeCurrentRoute()
|
|
},
|
|
};
|
|
</script>
|