mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-20 14:58:39 +08:00
48 lines
1007 B
Vue
48 lines
1007 B
Vue
<template>
|
|
<a-layout-footer class="footer">
|
|
{{ `Copyright © 2022-${new Date().getFullYear()}` }}
|
|
<a
|
|
href="https://blog.charles7c.top/about/me"
|
|
target="_blank"
|
|
rel="noopenner noreferrer"
|
|
>Charles7c</a
|
|
>
|
|
<span> ⋅ </span>
|
|
<a
|
|
href="https://github.com/Charles7c/continew-admin"
|
|
target="_blank"
|
|
rel="noopenner noreferrer"
|
|
>{{ $t('title') }}</a
|
|
> v1.0.0
|
|
<span> ⋅ </span>
|
|
<a
|
|
href="https://beian.miit.gov.cn"
|
|
target="_blank"
|
|
rel="noopenner noreferrer"
|
|
>津ICP备2022005864号-2</a
|
|
>
|
|
</a-layout-footer>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="less" scoped>
|
|
.footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 40px;
|
|
color: var(--color-text-2);
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--color-text-2);
|
|
}
|
|
|
|
a:hover {
|
|
color: rgb(var(--gray-6));
|
|
}
|
|
</style>
|