底部版权调整

This commit is contained in:
Jason 2022-08-17 14:42:32 +08:00
parent c18471e26b
commit b0753c7769
1 changed files with 4 additions and 4 deletions

View File

@ -3,12 +3,12 @@
<div class="text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto">
<a
class="mx-1 hover:underline"
:href="item.value"
:href="item.link"
target="_blank"
v-for="item in copyright"
:key="item.key"
:key="item.name"
>
{{ item.key }}
{{ item.name }}
</a>
</div>
</footer>
@ -18,5 +18,5 @@
import useAppStore from '@/stores/modules/app'
const appStore = useAppStore()
const copyright = computed(() => appStore.config.copyright_config || [])
const copyright = computed(() => appStore.config.copyright || [])
</script>