mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 19:05:55 +02:00
22 lines
316 B
Vue
22 lines
316 B
Vue
<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>
|