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(() => {