Files
orion-visor/orion-ops-ui/src/components/app/footer/index.vue

40 lines
1.1 KiB
Vue
Raw Normal View History

2023-07-24 10:05:07 +08:00
<template>
2023-08-03 14:21:27 +08:00
<a-layout-footer class="footer">
2023-11-10 19:02:38 +08:00
<a-space direction="vertical" size="medium">
<a-space size="large">
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">官网</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">文档</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">教程</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">github</a>
<a target="_blank" href="https://gitee.com/lijiahangmax/orion-ops-pro">gitee</a>
</a-space>
<span class="copyright">
Copyright<icon-copyright /> 2023 By OrionOpsPro
</span>
</a-space>
2023-08-03 14:21:27 +08:00
</a-layout-footer>
2023-07-24 10:05:07 +08:00
</template>
2023-07-27 18:48:15 +08:00
<script lang="ts" setup>
</script>
2023-07-24 10:05:07 +08:00
<style lang="less" scoped>
.footer {
display: flex;
2023-11-23 19:16:57 +08:00
align-items: flex-start;
2023-07-24 10:05:07 +08:00
justify-content: center;
text-align: center;
2023-11-23 19:16:57 +08:00
height: 64px;
2023-08-03 14:21:27 +08:00
2023-11-10 19:02:38 +08:00
a {
text-decoration: none;
color: rgb(var(--primary-6));
}
2023-08-03 14:21:27 +08:00
2023-11-10 19:02:38 +08:00
.copyright {
color: var(--color-text-3)
2023-08-03 14:21:27 +08:00
}
2023-11-10 19:02:38 +08:00
2023-07-24 10:05:07 +08:00
}
</style>