Browse Source

fix: 修复当左侧菜单收起后,切换到`horizontal`导航模式时文字不展示的问题

xiaoxian521 2 years ago
parent
commit
3ee8c51f90
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/layout/components/sidebar/sidebarItem.vue

+ 3 - 3
src/layout/components/sidebar/sidebarItem.vue

@@ -274,6 +274,9 @@ function resolvePath(routePath) {
           :is="useRenderIcon(props.item.meta && toRaw(props.item.meta.icon))"
         />
       </div>
+      <span v-if="layout === 'horizontal'">
+        {{ transformI18n(props.item.meta.title) }}
+      </span>
       <div
         :style="getSubMenuDivStyle(props.item)"
         v-if="
@@ -284,9 +287,6 @@ function resolvePath(routePath) {
           )
         "
       >
-        <span v-if="layout === 'horizontal'">
-          {{ transformI18n(props.item.meta.title) }}
-        </span>
         <el-tooltip
           v-if="layout !== 'horizontal'"
           placement="top"