1
0
Fork 0
forked from Kispi/Core
HGOE-SaS/webapp/src/components/atoms/AtomFooter.vue
Simon Giesel 212e0bbcc3
All checks were successful
continuous-integration/drone/push Build is passing
fix(webapp): small fixes
2023-07-09 22:45:42 +02:00

19 lines
No EOL
486 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<footer class="footer footer-center bg-base-100 p-4 text-base-content">
<div>
<p>Version: {{ version }}</p>
<p>Made with by Simon Giesel</p>
<p>Copyright © 2023 - All rights reserved</p>
</div>
</footer>
</template>
<script lang="ts" setup>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const version = (import.meta as any).env.VITE_APP_VERSION as string ?? 'local+dev';
</script>
<style lang="scss" scoped>
</style>