Package update and added dynamic year to footer
All checks were successful
Production Build and Deploy / QA and Build (push) Successful in 47s

This commit is contained in:
Liviu Burcusel 2026-01-07 14:36:50 +01:00
parent 7019345465
commit 4b38473c4a
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
3 changed files with 566 additions and 526 deletions

1082
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -36,7 +36,7 @@
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-vue": "^10.5.1",
"globals": "^16.4.0",
"globals": "^17.0.0",
"happy-dom": "^20.0.5",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",

View file

@ -1,3 +1,9 @@
<script setup lang="ts">
import { ref } from 'vue';
const currentYear = ref(new Date().getFullYear());
</script>
<template>
<v-footer class="d-flex flex-column">
<div class="d-flex w-100 align-left px-4 py-2">
@ -5,7 +11,7 @@
</div>
<v-divider thickness="2" width="100%"></v-divider>
<div class="px-4 py-2 align-left w-100">
&copy; 2025
&copy; 2025 - {{ currentYear }}
</div>
</v-footer>
</template>