mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-22 09:26:36 +08:00
25 lines
456 B
Vue
25 lines
456 B
Vue
|
|
<template>
|
|||
|
|
<div class="body-div">
|
|||
|
|
<a>站长:橙子</a>
|
|||
|
|
<a>YiFramework意框架</a>
|
|||
|
|
<a>关于本站    建议反馈</a>
|
|||
|
|
<a>2023 <span style="color: #40a9ff ;">意社区</span> | 赣ICP备xxxxxx号-4</a>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
<script setup>
|
|||
|
|
</script>
|
|||
|
|
<style scoped>
|
|||
|
|
a{
|
|||
|
|
display: block;
|
|||
|
|
}
|
|||
|
|
a:hover {
|
|||
|
|
color: #40a9ff;
|
|||
|
|
cursor:pointer;
|
|||
|
|
}
|
|||
|
|
.body-div
|
|||
|
|
{
|
|||
|
|
background: transparent;
|
|||
|
|
color: rgba(0,0,0,.45);
|
|||
|
|
font-size: 14px;
|
|||
|
|
}
|
|||
|
|
</style>
|