mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-11-10 22:57:15 +08:00
新增:新增前端项目模块(基于 Vue3、TypeScript、Arco Design Pro Vue 技术栈),已对接现有 API
This commit is contained in:
29
continew-admin-ui/src/components/footer/index.vue
Normal file
29
continew-admin-ui/src/components/footer/index.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<a-layout-footer class="footer">
|
||||
{{ `Copyright © 2022-${new Date().getFullYear()} Charles7c` }}
|
||||
<span> ⋅ </span>
|
||||
<a href="https://beian.miit.gov.cn" target="_blank">津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>
|
||||
Reference in New Issue
Block a user