Update year

This commit is contained in:
Sam Carlton 2021-01-27 12:45:32 -06:00 committed by GitHub
parent e84d433978
commit eb9c9d9753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@
</div> </div>
</div> </div>
<p class="mt-8 text-center text-base leading-6 text-gray-400"> <p class="mt-8 text-center text-base leading-6 text-gray-400">
&copy; 2020 Does it ARM All rights reserved. &copy; {{ currentYear }} Does it ARM All rights reserved.
</p> </p>
</div> </div>
</footer> </footer>
@ -49,6 +49,11 @@ export default {
components: { components: {
Navbar, Navbar,
AllUpdatesSubscribe AllUpdatesSubscribe
},
computed: {
currentYear () {
return new Date().getFullYear()
}
} }
} }