mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-12 12:53:42 +08:00
16 lines
356 B
Vue
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>
|