15 lines
452 B
Vue
15 lines
452 B
Vue
<template>
|
|
<div class="footer-container bg-white">
|
|
<div class="flex gap-0.5 justify-end h-full">
|
|
<span class="h-fit my-auto text-[13px]">
|
|
<span style="font-family: sans-serif" class="font-bold">©</span>
|
|
{{ dateYear }}, Mavorion Systems. All rights reserved.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const dateYear = new Date().getFullYear();
|
|
</script>
|