mirror of https://github.com/EasyDarwin/EasyDarwin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
6 years ago
|
<template>
|
||
|
<aside id="sider" class="main-sidebar">
|
||
|
<section class="sidebar">
|
||
|
<ul class="sidebar-menu">
|
||
|
<template v-for="(item,index) in menus">
|
||
|
<router-link class="treeview" v-if="item.path && !item.target" :key="index" :to="item.path" tag="li" :exact="item.path == '/'">
|
||
|
<a>
|
||
|
<i :class="['fa', 'fa-' + item.icon]"></i>
|
||
|
<span>{{item.title}}</span>
|
||
|
</a>
|
||
|
</router-link>
|
||
|
<li class="treeview" v-if="item.path && item.target" :key="index">
|
||
|
<a :href="item.path" :target="item.target">
|
||
|
<i :class="['fa', 'fa-' + item.icon]"></i>
|
||
|
<span>{{item.title}}</span>
|
||
|
</a>
|
||
|
</li>
|
||
|
</template>
|
||
|
</ul>
|
||
|
</section>
|
||
|
</aside>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { mapState } from "vuex";
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
menus : {
|
||
|
default : () => []
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
...mapState(['userInfo']),
|
||
|
path(){
|
||
|
return location.pathname;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
checkRoles(roles) {
|
||
|
return !roles || roles.some((val, idx, array) => {
|
||
|
if(!this.userInfo) return false;
|
||
|
var _roles = this.userInfo.roles || [];
|
||
|
return _roles.indexOf(val) >= 0;
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="css" scoped="true">
|
||
|
.main-sidebar{
|
||
|
/* Fix for IE */
|
||
|
-webkit-transition: none;
|
||
|
-o-transition: none;
|
||
|
transition: none;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
|
||
|
|
||
|
|