11 lines
256 B
Vue
11 lines
256 B
Vue
|
|
<template>
|
||
|
|
<dark-mode-container class="flex-center h-full">
|
||
|
|
<span>Copyright ©2021 Soybean Admin</span>
|
||
|
|
</dark-mode-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { DarkModeContainer } from '@/components';
|
||
|
|
</script>
|
||
|
|
<style scoped></style>
|