summaryrefslogtreecommitdiff
path: root/src/components/Footer.vue
blob: 4d1df2eca02ee5dc2173f43dbe9ea47259b42dc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
	<footer class="footer">
		&copy; 2004&ndash;{{ year }} The Mana World
	</footer>
</template>

<style scoped>
.footer {
	text-align: right;
	font-size: 8pt;
	padding: 5px;
}
</style>

<script lang="ts">
import Vue from "vue"
import Component from "vue-class-component"

@Component
export default class Copyright extends Vue {
	year = Reflect.construct(Date, []).getFullYear();
}
</script>