25 lines
568 B
Vue
Executable File
25 lines
568 B
Vue
Executable File
<script setup lang="ts">
|
|
const { footer } = useAppConfig();
|
|
</script>
|
|
|
|
<template>
|
|
<UFooter>
|
|
<template #left>
|
|
<img src="/icon.svg" alt="kompose" class="size-5 mr-0/5"></img>
|
|
{{ footer.credits }}
|
|
</template>
|
|
|
|
<template #right>
|
|
<UColorModeButton v-if="footer?.colorMode" />
|
|
|
|
<template v-if="footer?.links">
|
|
<UButton
|
|
v-for="(link, index) of footer?.links"
|
|
:key="index"
|
|
v-bind="{ color: 'neutral', variant: 'ghost', ...link }"
|
|
/>
|
|
</template>
|
|
</template>
|
|
</UFooter>
|
|
</template>
|