targo-frontend/src/layouts/components/main-layout-footer-bar.vue

21 lines
478 B
Vue

<script
setup
lang="ts"
>
const CREATE_YEAR = 2025;
const today = new Date();
</script>
<template>
<q-footer
elevated
class="bg-primary text-white"
>
<div class="q-px-md q-py-xs full-width text-right">
<span class="text-weight-light text-caption text-uppercase">
© {{ CREATE_YEAR }} - {{ today.getFullYear() }} Targo Communications inc.
</span>
</div>
</q-footer>
</template>