Files
soybean-admin/src/layouts/common/global-footer/index.vue
2023-03-15 09:01:06 +08:00

16 lines
356 B
Vue

<template>
<dark-mode-container class="flex-center h-full" :inverted="theme.footer.inverted">
<span>Copyright ©2021 Soybean Admin</span>
</dark-mode-container>
</template>
<script setup lang="ts">
import { useThemeStore } from '@/store';
defineOptions({ name: 'GlobalFooter' });
const theme = useThemeStore();
</script>
<style scoped></style>