1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| <script setup lang="ts">
| import { getConfig } from "@/config";
|
| const TITLE = getConfig("Title");
| </script>
|
| <template>
| <footer
| class="layout-footer text-[rgba(0,0,0,0.6)] dark:text-[rgba(220,220,242,0.8)]"
| >
| Copyright © 2020-present
| <a
| class="hover:text-primary"
| href="https://github.com/pure-admin"
| target="_blank"
| >
| {{ TITLE }}
| </a>
| </footer>
| </template>
|
| <style lang="scss" scoped>
| .layout-footer {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 100%;
| padding: 0 0 8px;
| font-size: 14px;
| }
| </style>
|
|