generated from Flycro/laravel-nuxt
25 lines
688 B
Vue
25 lines
688 B
Vue
<script setup lang="ts">
|
||
const config = useRuntimeConfig()
|
||
</script>
|
||
|
||
<template>
|
||
<div>
|
||
<UDivider />
|
||
<UFooter c>
|
||
<template #left>
|
||
<div class="text-xs">
|
||
Copyright © {{ new Date().getFullYear() }}
|
||
</div>
|
||
</template>
|
||
<template #center>
|
||
Made with ❤️ by <a class="text-primary hover:text-primary-600 ml-1" href="https://flycro.me" target="_blank">Flycro</a>
|
||
</template>
|
||
<template #right>
|
||
<div class="font-mono text-xs">
|
||
{{ config.public.packageVersion }} - {{ config.public.gitHash !== '' ? config.public.gitHash : '0000000' }}
|
||
</div>
|
||
</template>
|
||
</UFooter>
|
||
</div>
|
||
</template>
|