forked from Kispi/Core
All checks were successful
continuous-integration/drone/push Build is passing
19 lines
No EOL
486 B
Vue
19 lines
No EOL
486 B
Vue
<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> |