mirror of
https://github.com/PanJiaChen/electron-vue-admin.git
synced 2025-04-05 05:32:44 +08:00
37 lines
735 B
Vue
37 lines
735 B
Vue
<template>
|
|
<scroll-bar>
|
|
<el-menu
|
|
mode="vertical"
|
|
:show-timeout="200"
|
|
:default-active="$route.path"
|
|
:collapse="isCollapse"
|
|
background-color="#304156"
|
|
text-color="#bfcbd9"
|
|
active-text-color="#409EFF"
|
|
>
|
|
<sidebar-item :routes="routes"></sidebar-item>
|
|
</el-menu>
|
|
</scroll-bar>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
import SidebarItem from './SidebarItem'
|
|
import ScrollBar from '@/components/ScrollBar'
|
|
|
|
export default {
|
|
components: { SidebarItem, ScrollBar },
|
|
computed: {
|
|
...mapGetters([
|
|
'sidebar'
|
|
]),
|
|
routes() {
|
|
return this.$router.options.routes
|
|
},
|
|
isCollapse() {
|
|
return !this.sidebar.opened
|
|
}
|
|
}
|
|
}
|
|
</script>
|