From e455852b7dcbd9a589a99c05a93aa3f8017d8153 Mon Sep 17 00:00:00 2001 From: ray_wuhao <443547225@qq.com> Date: Thu, 6 Apr 2023 10:23:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=86=E8=8A=82=E4=BF=AE=E6=94=B9=EF=BC=8C?= =?UTF-8?q?=E7=8E=B0=E5=9C=A8=E5=A6=82=E6=9E=9C=E4=B8=8D=E9=85=8D=E7=BD=AE?= =?UTF-8?q?sideBarLogo=20icon=E5=B1=9E=E6=80=A7=E5=88=99=E4=B8=8D=E4=BC=9A?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cfg.ts | 6 +++--- src/layout/components/Menu/index.tsx | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/cfg.ts b/cfg.ts index 9ca6ae8f..7fb404f0 100644 --- a/cfg.ts +++ b/cfg.ts @@ -30,10 +30,10 @@ const config: AppConfigExport = { }, /** * - * icon: LOGO 图标, 依赖 `RayIcon` 实现 + * icon: LOGO 图标, 依赖 `RayIcon` 实现(如果为空则不会渲染图标) * title: LOGO 标题 * url: 点击跳转地址, 如果不配置该属性, 则不会触发跳转 - * jumpType: 跳转类型(station: 项目内跳转, outsideStation: 新页面打开) + * jumpType: 跳转类型(station: 项目内跳转, outsideStation: 新页面打开) * * 如果不设置该属性或者为空, 则不会渲染 LOGO */ @@ -73,7 +73,7 @@ const config: AppConfigExport = { title: HTMLTitlePlugin('Ray Template'), /** * - * 配置 HMR 特定选项(端口、主机、路径和协议) + * 配置 HMR 特定选项(端口、主机、路径和协议) */ server: { host: '0.0.0.0', diff --git a/src/layout/components/Menu/index.tsx b/src/layout/components/Menu/index.tsx index 1a375582..6d2b43ac 100644 --- a/src/layout/components/Menu/index.tsx +++ b/src/layout/components/Menu/index.tsx @@ -63,7 +63,11 @@ const LayoutMenu = defineComponent({ ]} onClick={this.handleSideBarLogoClick.bind(this)} > - + {this.sideBarLogo.icon ? ( + + ) : ( + '' + )}