unfinished WebUI

This commit is contained in:
Jacky 2021-03-16 13:30:07 +08:00
parent 0ad1b3af4b
commit 070b34be8a
69 changed files with 13932 additions and 140 deletions

View file

@ -0,0 +1,22 @@
<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>