ct/app/components/AppFooter.vue
2025-09-30 17:35:13 +08:00

29 lines
818 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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