ct/app/components/AppFooter.vue

29 lines
818 B
Vue
Raw Normal View History

2025-09-30 09:23:31 +08:00
<script lang="ts" setup>
const {footer} = useAppConfig()
2025-09-29 14:45:33 +08:00
</script>
<template>
2025-09-30 17:35:13 +08:00
<UMarquee>
共享APP开发-创特科技专注于共享陪护床共享电动车共享汽车共享充电桩共享家居电器共享按摩椅共享充电宝共享滑板车等共享软件开发及物联网解决方案
</umarquee>
2025-09-29 14:45:33 +08:00
<UFooter
2025-09-30 09:23:31 +08:00
:ui="{ left: 'text-muted text-xs' }"
class="z-10 bg-default"
2025-09-29 14:45:33 +08:00
>
<template #left>
{{ footer.credits }}
</template>
<template #right>
2025-09-30 09:23:31 +08:00
{{ footer.address }}
2025-09-29 14:45:33 +08:00
<template v-if="footer?.links">
<UButton
2025-09-30 09:23:31 +08:00
v-for="(link, index) of footer?.links"
:key="index"
v-bind="{ size: 'xs', color: 'neutral', variant: 'ghost', ...link }"
2025-09-29 14:45:33 +08:00
/>
</template>
</template>
</UFooter>
</template>