blob: 076700ea6778c94f10874295732d641b8922c28a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<template>
<footer class="footer">
© 2004–{{ year }} The Mana World
</footer>
</template>
<style scoped>
.footer {
text-align: right;
font-size: 8pt;
padding: 5px;
}
</style>
<script lang="ts">
import { Options, Vue } from "vue-class-component";
@Options({})
export default class Copyright extends Vue {
year = Reflect.construct(Date, []).getFullYear();
}
</script>
|