Explorar el Código

优化TopNav菜单没有图标svg不显示

RuoYi hace 2 años
padre
commit
48711178ec
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      ruoyi-ui/src/components/TopNav/index.vue

+ 4 - 1
ruoyi-ui/src/components/TopNav/index.vue

@@ -6,7 +6,10 @@
6 6
   >
7 7
     <template v-for="(item, index) in topMenus">
8 8
       <el-menu-item :style="{'--theme': theme}" :index="item.path" :key="index" v-if="index < visibleNumber"
9
-        ><svg-icon :icon-class="item.meta.icon" />
9
+        ><svg-icon
10
+          v-if="item.meta && item.meta.icon && item.meta.icon !== '#'"
11
+          :icon-class="item.meta.icon"
12
+        />
10 13
         {{ item.meta.title }}</el-menu-item
11 14
       >
12 15
     </template>