12345678910111213141516171819202122 |
- <template>
- <div class="footer center">
- Copyright © 2020 - {{ thisYear }} 0xJacky
- </div>
- </template>
- <script>
- export default {
- name: 'FooterComponent',
- data() {
- return {
- thisYear: new Date().getFullYear()
- }
- }
- }
- </script>
- <style scoped>
- .footer {
- }
- </style>
|