From a185b1ee96d1550bba3c68ea98159533163fe939 Mon Sep 17 00:00:00 2001 From: ManikanthDindigala <dindigala@sub.uni-goettingen.de> Date: Mon, 9 Aug 2021 12:20:04 +0200 Subject: [PATCH] fix: adding a slash key --- src/.vuepress/components/Bar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.vuepress/components/Bar.vue b/src/.vuepress/components/Bar.vue index f8976d3..55a43b1 100644 --- a/src/.vuepress/components/Bar.vue +++ b/src/.vuepress/components/Bar.vue @@ -93,7 +93,7 @@ export default { }), computed: { getPath(){ - return window?.location?.origin + window?.location?.pathname.replace(this.$route.path,''); + return window?.location?.origin + '/' + window?.location?.pathname.replace(this.$route.path,''); } } } -- GitLab