bug修改

This commit is contained in:
mabo
2021-07-08 14:36:05 +08:00
parent e5449213c2
commit 48c0dcb69b
16 changed files with 104 additions and 644 deletions

View File

@@ -6,7 +6,7 @@
<a class="item" href="https://pickmall.cn/" target="_blank">{{ $t('terms') }}</a>
</Row>
<Row type="flex" justify="center" class="copyright">
Copyright © 2020 - Present
Copyright © {{year}} - Present
<a
href="https://pickmall.cn/"
target="_blank"
@@ -18,7 +18,12 @@
<script>
export default {
name: "footer"
name: "footer",
data() {
return {
year: new Date().getFullYear()
}
},
};
</script>