Skip to content

Commit

Permalink
feat(layouts): ✨ [layouts] 混合菜单模式下折叠按钮显示在底部
Browse files Browse the repository at this point in the history
  • Loading branch information
jsxiaosi committed Nov 7, 2022
1 parent 15309b5 commit 2480e7a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/layouts/pageLayouts/components/VerticalSidebar/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
>
<AppLogo />
<Sidebar mode="vertical" />
<div v-if="appConfig.sidebarFold === 'bottom'" class="sidebar-fold">
<div
v-if="
(appConfig.sidebarFold === 'bottom' || appConfig.sidebarMode === 'blend') &&
appConfig.sidebarFold !== 'none'
"
class="sidebar-fold"
>
<AppFold />
</div>
</div>
Expand Down

0 comments on commit 2480e7a

Please sign in to comment.