CASH-2737: Dynamic copyright year
This commit is contained in:
parent
50e9df1bf1
commit
be4d675d2e
1 changed files with 6 additions and 1 deletions
|
|
@ -28,7 +28,7 @@
|
|||
href="https://www.safelite.com/ccpa-privacy-policy"
|
||||
target="_blank" />
|
||||
</div>
|
||||
<p class="mx-3 my-0 pb-1">© 2025 Safelite Group</p>
|
||||
<p class="mx-3 my-0 pb-1">© {{ currentYear }} Safelite Group</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
@ -40,6 +40,11 @@ export default {
|
|||
components: {
|
||||
textLink,
|
||||
},
|
||||
computed: {
|
||||
currentYear() {
|
||||
return new Date().getFullYear();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue