index.vue 453 B

12345678910111213141516171819202122232425
  1. <script setup lang="ts">
  2. import { getConfig } from "@/config";
  3. const TITLE = getConfig("Title");
  4. </script>
  5. <template>
  6. <footer
  7. class="layout-footer text-[rgba(0,0,0,0.6)] dark:text-[rgba(220,220,242,0.8)]"
  8. >
  9. Copyright © 2020-present
  10. </footer>
  11. </template>
  12. <style lang="scss" scoped>
  13. .layout-footer {
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. width: 100%;
  18. padding: 0 0 8px;
  19. font-size: 14px;
  20. }
  21. </style>