diff --git a/frontend/src/layout/components/AppFooter.vue b/frontend/src/layout/components/AppFooter.vue index bebb6b4bc..e168c885a 100644 --- a/frontend/src/layout/components/AppFooter.vue +++ b/frontend/src/layout/components/AppFooter.vue @@ -3,10 +3,10 @@
- Copyright © 2014-2025 {{ $t('commons.fit2cloud') }} + Copyright © 2014-{{ year }} {{ $t('commons.fit2cloud') }} - Copyright © 2025 {{ $t('commons.lingxia') }} + Copyright © {{ year }} {{ $t('commons.lingxia') }}
@@ -25,6 +25,7 @@ const globalStore = GlobalStore(); const mobile = computed(() => { return globalStore.isMobile(); }); +const year = new Date().getFullYear();