Files
admin/www/web/app/components/AppFooter.vue
T
2026-07-30 11:23:50 +08:00

15 lines
455 B
Vue

<script setup lang="ts">
const { t } = useI18n();
const currentYear = new Date().getFullYear();
</script>
<template>
<footer class="border-t border-gray-100 bg-gray-50 dark:bg-dark-900 dark:border-dark-700">
<div class="section-container py-32px flex flex-col items-center gap-12px">
<p class="text-sm text-gray-500 dark:text-gray-400">
{{ t('footer.copyright', { year: currentYear }) }}
</p>
</div>
</footer>
</template>