| | |
| | | <template> |
| | | <div :class="{'has-logo':showLogo}"> |
| | | <div :class="{'has-logo':showLogo}" style="border-right: 1px solid #DDE0E2;"> |
| | | <logo v-if="showLogo" :collapse="isCollapse" /> |
| | | <el-scrollbar wrap-class="scrollbar-wrapper"> |
| | | <el-menu |
| | |
| | | :collapse-transition="false" |
| | | mode="vertical" |
| | | > |
| | | <sidebar-item v-for="route in routes" :key="route.path" :item="route" :base-path="route.path" /> |
| | | <sidebar-item v-for="(route,index) in routes" :key="index" :item="route" :base-path="route.path" /> |
| | | </el-menu> |
| | | </el-scrollbar> |
| | | </div> |
| | |
| | | return path |
| | | }, |
| | | showLogo() { |
| | | return this.$store.state.settings.sidebarLogo |
| | | return true; |
| | | }, |
| | | variables() { |
| | | return variables |