2023-03-11 01:16:28 +08:00
|
|
|
|
<template>
|
2023-03-24 22:39:35 +08:00
|
|
|
|
<div class="botton-div">
|
2023-03-26 16:22:49 +08:00
|
|
|
|
<a><el-icon><UserFilled /></el-icon>站长:{{configStore.author}}</a>
|
|
|
|
|
|
<a><el-icon><Search /></el-icon>{{configStore.bottom}}</a>
|
2023-03-24 22:39:35 +08:00
|
|
|
|
<a><el-icon><View /></el-icon>关于本站</a>
|
|
|
|
|
|
<a><el-icon><Message /></el-icon>建议反馈</a>
|
|
|
|
|
|
<p></p>
|
2023-03-26 16:22:49 +08:00
|
|
|
|
<a ><el-icon><Position /></el-icon>{{configStore.icp}}</a>
|
2023-03-11 01:16:28 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
2023-03-26 16:22:49 +08:00
|
|
|
|
import useConfigStore from "@/stores/config";
|
|
|
|
|
|
const configStore= useConfigStore();
|
2023-03-11 01:16:28 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
2023-03-24 22:39:35 +08:00
|
|
|
|
.el-icon
|
|
|
|
|
|
{margin: 0 0.2rem;}
|
2023-03-11 01:16:28 +08:00
|
|
|
|
a{
|
2023-03-24 22:39:35 +08:00
|
|
|
|
margin-right: 2rem;
|
|
|
|
|
|
line-height: 1.8rem;
|
2023-03-11 01:16:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
a:hover {
|
|
|
|
|
|
color: #40a9ff;
|
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
}
|
2023-03-24 22:39:35 +08:00
|
|
|
|
.botton-div
|
2023-03-11 01:16:28 +08:00
|
|
|
|
{
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
color: rgba(0,0,0,.45);
|
|
|
|
|
|
font-size: 14px;
|
2023-03-24 22:39:35 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
justify-content: center;
|
2023-03-26 16:22:49 +08:00
|
|
|
|
margin: 0.5rem auto;
|
2023-03-11 01:16:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|