From 29db490914dc3e286f7e4320ad3086313462ec11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=95=E9=98=B3=E5=BE=AE=E7=AC=911?= <12457268+sunset-smile-1@user.noreply.gitee.com> Date: Mon, 16 Dec 2024 13:41:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E7=9A=84=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 64ebff6..f9f3119 100644 --- a/src/App.vue +++ b/src/App.vue @@ -50,14 +50,16 @@ const getVersion = computed(() => { // @ts-ignore if ((Local.get('version') && Local.get('version') !== __NEXT_VERSION__) || !Local.get('version')) isVersion = true; } - return isVersion; + // return isVersion; + return false; }); // 隐藏广告 const hideSponsors = computed(() => { const path = route.path; console.log(path === '/login' || path === '/article/content'); - return path === '/login' || path === '/article/content'; + // return path === '/login' || path === '/article/content'; + return true; }); // 获取全局组件大小 const getGlobalComponentSize = computed(() => {