底部版权调整
This commit is contained in:
parent
c18471e26b
commit
b0753c7769
|
|
@ -3,12 +3,12 @@
|
||||||
<div class="text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto">
|
<div class="text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto">
|
||||||
<a
|
<a
|
||||||
class="mx-1 hover:underline"
|
class="mx-1 hover:underline"
|
||||||
:href="item.value"
|
:href="item.link"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
v-for="item in copyright"
|
v-for="item in copyright"
|
||||||
:key="item.key"
|
:key="item.name"
|
||||||
>
|
>
|
||||||
{{ item.key }}
|
{{ item.name }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
@ -18,5 +18,5 @@
|
||||||
import useAppStore from '@/stores/modules/app'
|
import useAppStore from '@/stores/modules/app'
|
||||||
|
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
const copyright = computed(() => appStore.config.copyright_config || [])
|
const copyright = computed(() => appStore.config.copyright || [])
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue