Package update and added dynamic year to footer
All checks were successful
Production Build and Deploy / QA and Build (push) Successful in 47s
All checks were successful
Production Build and Deploy / QA and Build (push) Successful in 47s
This commit is contained in:
parent
7019345465
commit
4b38473c4a
3 changed files with 566 additions and 526 deletions
1082
package-lock.json
generated
1082
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
© 2025
|
||||
© 2025 - {{ currentYear }}
|
||||
</div>
|
||||
</v-footer>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue