nginx-ui/nginx-ui-frontend/src/layouts/FooterLayout.vue
2021-03-16 13:30:07 +08:00

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>