From 9cba45e97135833a430a2803c2bf325fd6b85c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Wed, 10 Apr 2019 10:12:16 +0800 Subject: [PATCH] fix[Sidebar]: fixed external link bug (#1870) --- src/layout/components/Sidebar/SidebarItem.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layout/components/Sidebar/SidebarItem.vue b/src/layout/components/Sidebar/SidebarItem.vue index 8c9c4328..b4422cf8 100644 --- a/src/layout/components/Sidebar/SidebarItem.vue +++ b/src/layout/components/Sidebar/SidebarItem.vue @@ -86,6 +86,9 @@ export default { if (isExternal(routePath)) { return routePath } + if (isExternal(this.basePath)) { + return this.basePath + } return path.resolve(this.basePath, routePath) },