feat: 添加页脚 (#758)

feat: 添加页脚
This commit is contained in:
一万
2023-10-17 11:25:35 +08:00
committed by GitHub
parent 3e040fcc24
commit b93ebe713b
7 changed files with 103 additions and 18 deletions

View File

@@ -0,0 +1,29 @@
<script lang="ts" setup>
import { getConfig } from "@/config";
const TITLE = getConfig("Title");
</script>
<template>
<footer class="layout-footer">
MIT © 2020-PRESENT
<a
class="ml-1 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;
color: #c0c4cc;
}
</style>